Models
Types

Models

User

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
email String
  • @unique
Yes -
password String
  • -
Yes -
firstName String?
  • -
No -
lastName String?
  • -
No -
username String?
  • @unique
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
role UserRole
  • @default(user)
Yes -
SecurityAuditLog SecurityAuditLog[]
  • -
Yes -
UserAlert UserAlert[]
  • -
Yes -
alertPreferences UserAlertPreferences?
  • -
No -
UserPerfume UserPerfume[]
  • -
Yes -
userPerfumeComments UserPerfumeComment[]
  • -
Yes -
UserPerfumeRating UserPerfumeRating[]
  • -
Yes -
UserPerfumeReview UserPerfumeReview[]
  • -
Yes -
UserPerfumeWishlist UserPerfumeWishlist[]
  • -
Yes -
wishlistNotifications WishlistNotification[]
  • -
Yes -
traderFeedbackReceived TraderFeedback[]
  • -
Yes -
traderFeedbackLeft TraderFeedback[]
  • -
Yes -
pendingSubmissions PendingSubmission[]
  • -
Yes -
reviewedSubmissions PendingSubmission[]
  • -
Yes -
traderContactMessagesSent TraderContactMessage[]
  • -
Yes -
traderContactMessagesReceived TraderContactMessage[]
  • -
Yes -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

PerfumeHouse

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
name String
  • @unique
Yes -
description String?
  • -
No -
image String?
  • -
No -
website String?
  • -
No -
country String?
  • -
No -
founded String?
  • -
No -
email String?
  • -
No -
phone String?
  • -
No -
address String?
  • -
No -
type HouseType
  • @default(indie)
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
slug String
  • @unique
Yes -
perfumes Perfume[]
  • -
Yes -

Operations

findUnique

Find zero or one PerfumeHouse

// Get one PerfumeHouse
const perfumeHouse = await prisma.perfumeHouse.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeHouseWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PerfumeHouse

// Get one PerfumeHouse
const perfumeHouse = await prisma.perfumeHouse.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeHouseWhereInput No
orderBy PerfumeHouseOrderByWithRelationInput[] | PerfumeHouseOrderByWithRelationInput No
cursor PerfumeHouseWhereUniqueInput No
take Int No
skip Int No
distinct PerfumeHouseScalarFieldEnum | PerfumeHouseScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PerfumeHouse

// Get all PerfumeHouse
const PerfumeHouse = await prisma.perfumeHouse.findMany()
// Get first 10 PerfumeHouse
const PerfumeHouse = await prisma.perfumeHouse.findMany({ take: 10 })

Input

Name Type Required
where PerfumeHouseWhereInput No
orderBy PerfumeHouseOrderByWithRelationInput[] | PerfumeHouseOrderByWithRelationInput No
cursor PerfumeHouseWhereUniqueInput No
take Int No
skip Int No
distinct PerfumeHouseScalarFieldEnum | PerfumeHouseScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PerfumeHouse

// Create one PerfumeHouse
const PerfumeHouse = await prisma.perfumeHouse.create({
  data: {
    // ... data to create a PerfumeHouse
  }
})

Input

Name Type Required
data PerfumeHouseCreateInput | PerfumeHouseUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PerfumeHouse

// Delete one PerfumeHouse
const PerfumeHouse = await prisma.perfumeHouse.delete({
  where: {
    // ... filter to delete one PerfumeHouse
  }
})

Input

Name Type Required
where PerfumeHouseWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PerfumeHouse

// Update one PerfumeHouse
const perfumeHouse = await prisma.perfumeHouse.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PerfumeHouseUpdateInput | PerfumeHouseUncheckedUpdateInput Yes
where PerfumeHouseWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PerfumeHouse

// Delete a few PerfumeHouse
const { count } = await prisma.perfumeHouse.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeHouseWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one PerfumeHouse

const { count } = await prisma.perfumeHouse.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PerfumeHouseUpdateManyMutationInput | PerfumeHouseUncheckedUpdateManyInput Yes
where PerfumeHouseWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one PerfumeHouse

// Update or create a PerfumeHouse
const perfumeHouse = await prisma.perfumeHouse.upsert({
  create: {
    // ... data to create a PerfumeHouse
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PerfumeHouse we want to update
  }
})

Input

Name Type Required
where PerfumeHouseWhereUniqueInput Yes
create PerfumeHouseCreateInput | PerfumeHouseUncheckedCreateInput Yes
update PerfumeHouseUpdateInput | PerfumeHouseUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Perfume

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
name String
  • -
Yes -
description String?
  • -
No -
image String?
  • -
No -
perfumeHouseId String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
slug String
  • @unique
Yes -
perfumeHouse PerfumeHouse?
  • -
No -
perfumeNoteRelations PerfumeNoteRelation[]
  • -
Yes -
UserAlert UserAlert[]
  • -
Yes -
userPerfume UserPerfume[]
  • -
Yes -
userPerfumeComments UserPerfumeComment[]
  • -
Yes -
userPerfumeRating UserPerfumeRating[]
  • -
Yes -
userPerfumeReview UserPerfumeReview[]
  • -
Yes -
userPerfumeWishlist UserPerfumeWishlist[]
  • -
Yes -
wishlistNotifications WishlistNotification[]
  • -
Yes -

Operations

findUnique

Find zero or one Perfume

// Get one Perfume
const perfume = await prisma.perfume.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeWhereUniqueInput Yes

Output

Type: Perfume
Required: No
List: No

findFirst

Find first Perfume

// Get one Perfume
const perfume = await prisma.perfume.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeWhereInput No
orderBy PerfumeOrderByWithRelationInput[] | PerfumeOrderByWithRelationInput No
cursor PerfumeWhereUniqueInput No
take Int No
skip Int No
distinct PerfumeScalarFieldEnum | PerfumeScalarFieldEnum[] No

Output

Type: Perfume
Required: No
List: No

findMany

Find zero or more Perfume

// Get all Perfume
const Perfume = await prisma.perfume.findMany()
// Get first 10 Perfume
const Perfume = await prisma.perfume.findMany({ take: 10 })

Input

Name Type Required
where PerfumeWhereInput No
orderBy PerfumeOrderByWithRelationInput[] | PerfumeOrderByWithRelationInput No
cursor PerfumeWhereUniqueInput No
take Int No
skip Int No
distinct PerfumeScalarFieldEnum | PerfumeScalarFieldEnum[] No

Output

Type: Perfume
Required: Yes
List: Yes

create

Create one Perfume

// Create one Perfume
const Perfume = await prisma.perfume.create({
  data: {
    // ... data to create a Perfume
  }
})

Input

Name Type Required
data PerfumeCreateInput | PerfumeUncheckedCreateInput Yes

Output

Type: Perfume
Required: Yes
List: No

delete

Delete one Perfume

// Delete one Perfume
const Perfume = await prisma.perfume.delete({
  where: {
    // ... filter to delete one Perfume
  }
})

Input

Name Type Required
where PerfumeWhereUniqueInput Yes

Output

Type: Perfume
Required: No
List: No

update

Update one Perfume

// Update one Perfume
const perfume = await prisma.perfume.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PerfumeUpdateInput | PerfumeUncheckedUpdateInput Yes
where PerfumeWhereUniqueInput Yes

Output

Type: Perfume
Required: No
List: No

deleteMany

Delete zero or more Perfume

// Delete a few Perfume
const { count } = await prisma.perfume.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one Perfume

const { count } = await prisma.perfume.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PerfumeUpdateManyMutationInput | PerfumeUncheckedUpdateManyInput Yes
where PerfumeWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one Perfume

// Update or create a Perfume
const perfume = await prisma.perfume.upsert({
  create: {
    // ... data to create a Perfume
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Perfume we want to update
  }
})

Input

Name Type Required
where PerfumeWhereUniqueInput Yes
create PerfumeCreateInput | PerfumeUncheckedCreateInput Yes
update PerfumeUpdateInput | PerfumeUncheckedUpdateInput Yes

Output

Type: Perfume
Required: Yes
List: No

UserPerfume

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
userId String
  • -
Yes -
perfumeId String
  • -
Yes -
amount String
  • @default(0)
Yes -
available String
  • @default(0)
Yes -
price String?
  • -
No -
placeOfPurchase String?
  • -
No -
tradePrice String?
  • -
No -
tradePreference TradePreference
  • @default(cash)
Yes -
tradeOnly Boolean
  • @default(false)
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
  • @updatedAt
Yes -
type PerfumeType
  • @default(eauDeParfum)
Yes -
perfume Perfume
  • -
Yes -
user User
  • -
Yes -
comments UserPerfumeComment[]
  • -
Yes -

Operations

findUnique

Find zero or one UserPerfume

// Get one UserPerfume
const userPerfume = await prisma.userPerfume.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first UserPerfume

// Get one UserPerfume
const userPerfume = await prisma.userPerfume.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeWhereInput No
orderBy UserPerfumeOrderByWithRelationInput[] | UserPerfumeOrderByWithRelationInput No
cursor UserPerfumeWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeScalarFieldEnum | UserPerfumeScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more UserPerfume

// Get all UserPerfume
const UserPerfume = await prisma.userPerfume.findMany()
// Get first 10 UserPerfume
const UserPerfume = await prisma.userPerfume.findMany({ take: 10 })

Input

Name Type Required
where UserPerfumeWhereInput No
orderBy UserPerfumeOrderByWithRelationInput[] | UserPerfumeOrderByWithRelationInput No
cursor UserPerfumeWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeScalarFieldEnum | UserPerfumeScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one UserPerfume

// Create one UserPerfume
const UserPerfume = await prisma.userPerfume.create({
  data: {
    // ... data to create a UserPerfume
  }
})

Input

Name Type Required
data UserPerfumeCreateInput | UserPerfumeUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one UserPerfume

// Delete one UserPerfume
const UserPerfume = await prisma.userPerfume.delete({
  where: {
    // ... filter to delete one UserPerfume
  }
})

Input

Name Type Required
where UserPerfumeWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one UserPerfume

// Update one UserPerfume
const userPerfume = await prisma.userPerfume.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeUpdateInput | UserPerfumeUncheckedUpdateInput Yes
where UserPerfumeWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more UserPerfume

// Delete a few UserPerfume
const { count } = await prisma.userPerfume.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one UserPerfume

const { count } = await prisma.userPerfume.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeUpdateManyMutationInput | UserPerfumeUncheckedUpdateManyInput Yes
where UserPerfumeWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one UserPerfume

// Update or create a UserPerfume
const userPerfume = await prisma.userPerfume.upsert({
  create: {
    // ... data to create a UserPerfume
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserPerfume we want to update
  }
})

Input

Name Type Required
where UserPerfumeWhereUniqueInput Yes
create UserPerfumeCreateInput | UserPerfumeUncheckedCreateInput Yes
update UserPerfumeUpdateInput | UserPerfumeUncheckedUpdateInput Yes

Output

Required: Yes
List: No

UserPerfumeRating

Name Value
@@unique
  • userId
  • perfumeId
@@index
  • userId
  • perfumeId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
userId String
  • -
Yes -
perfumeId String
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
gender Int?
  • -
No -
longevity Int?
  • -
No -
overall Int?
  • -
No -
priceValue Int?
  • -
No -
sillage Int?
  • -
No -
updatedAt DateTime
  • @updatedAt
Yes -
perfume Perfume
  • -
Yes -
user User
  • -
Yes -

Operations

findUnique

Find zero or one UserPerfumeRating

// Get one UserPerfumeRating
const userPerfumeRating = await prisma.userPerfumeRating.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeRatingWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first UserPerfumeRating

// Get one UserPerfumeRating
const userPerfumeRating = await prisma.userPerfumeRating.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeRatingWhereInput No
orderBy UserPerfumeRatingOrderByWithRelationInput[] | UserPerfumeRatingOrderByWithRelationInput No
cursor UserPerfumeRatingWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeRatingScalarFieldEnum | UserPerfumeRatingScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more UserPerfumeRating

// Get all UserPerfumeRating
const UserPerfumeRating = await prisma.userPerfumeRating.findMany()
// Get first 10 UserPerfumeRating
const UserPerfumeRating = await prisma.userPerfumeRating.findMany({ take: 10 })

Input

Name Type Required
where UserPerfumeRatingWhereInput No
orderBy UserPerfumeRatingOrderByWithRelationInput[] | UserPerfumeRatingOrderByWithRelationInput No
cursor UserPerfumeRatingWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeRatingScalarFieldEnum | UserPerfumeRatingScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one UserPerfumeRating

// Create one UserPerfumeRating
const UserPerfumeRating = await prisma.userPerfumeRating.create({
  data: {
    // ... data to create a UserPerfumeRating
  }
})

Input

Name Type Required
data UserPerfumeRatingCreateInput | UserPerfumeRatingUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one UserPerfumeRating

// Delete one UserPerfumeRating
const UserPerfumeRating = await prisma.userPerfumeRating.delete({
  where: {
    // ... filter to delete one UserPerfumeRating
  }
})

Input

Name Type Required
where UserPerfumeRatingWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one UserPerfumeRating

// Update one UserPerfumeRating
const userPerfumeRating = await prisma.userPerfumeRating.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeRatingUpdateInput | UserPerfumeRatingUncheckedUpdateInput Yes
where UserPerfumeRatingWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more UserPerfumeRating

// Delete a few UserPerfumeRating
const { count } = await prisma.userPerfumeRating.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeRatingWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one UserPerfumeRating

const { count } = await prisma.userPerfumeRating.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeRatingUpdateManyMutationInput | UserPerfumeRatingUncheckedUpdateManyInput Yes
where UserPerfumeRatingWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one UserPerfumeRating

// Update or create a UserPerfumeRating
const userPerfumeRating = await prisma.userPerfumeRating.upsert({
  create: {
    // ... data to create a UserPerfumeRating
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserPerfumeRating we want to update
  }
})

Input

Name Type Required
where UserPerfumeRatingWhereUniqueInput Yes
create UserPerfumeRatingCreateInput | UserPerfumeRatingUncheckedCreateInput Yes
update UserPerfumeRatingUpdateInput | UserPerfumeRatingUncheckedUpdateInput Yes

Output

Required: Yes
List: No

UserPerfumeReview

Name Value
@@unique
  • userId
  • perfumeId
@@index
  • userId
  • perfumeId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
userId String
  • -
Yes -
perfumeId String
  • -
Yes -
review String
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
isApproved Boolean
  • @default(true)
Yes -
perfume Perfume
  • -
Yes -
user User
  • -
Yes -

Operations

findUnique

Find zero or one UserPerfumeReview

// Get one UserPerfumeReview
const userPerfumeReview = await prisma.userPerfumeReview.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeReviewWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first UserPerfumeReview

// Get one UserPerfumeReview
const userPerfumeReview = await prisma.userPerfumeReview.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeReviewWhereInput No
orderBy UserPerfumeReviewOrderByWithRelationInput[] | UserPerfumeReviewOrderByWithRelationInput No
cursor UserPerfumeReviewWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeReviewScalarFieldEnum | UserPerfumeReviewScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more UserPerfumeReview

// Get all UserPerfumeReview
const UserPerfumeReview = await prisma.userPerfumeReview.findMany()
// Get first 10 UserPerfumeReview
const UserPerfumeReview = await prisma.userPerfumeReview.findMany({ take: 10 })

Input

Name Type Required
where UserPerfumeReviewWhereInput No
orderBy UserPerfumeReviewOrderByWithRelationInput[] | UserPerfumeReviewOrderByWithRelationInput No
cursor UserPerfumeReviewWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeReviewScalarFieldEnum | UserPerfumeReviewScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one UserPerfumeReview

// Create one UserPerfumeReview
const UserPerfumeReview = await prisma.userPerfumeReview.create({
  data: {
    // ... data to create a UserPerfumeReview
  }
})

Input

Name Type Required
data UserPerfumeReviewCreateInput | UserPerfumeReviewUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one UserPerfumeReview

// Delete one UserPerfumeReview
const UserPerfumeReview = await prisma.userPerfumeReview.delete({
  where: {
    // ... filter to delete one UserPerfumeReview
  }
})

Input

Name Type Required
where UserPerfumeReviewWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one UserPerfumeReview

// Update one UserPerfumeReview
const userPerfumeReview = await prisma.userPerfumeReview.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeReviewUpdateInput | UserPerfumeReviewUncheckedUpdateInput Yes
where UserPerfumeReviewWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more UserPerfumeReview

// Delete a few UserPerfumeReview
const { count } = await prisma.userPerfumeReview.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeReviewWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one UserPerfumeReview

const { count } = await prisma.userPerfumeReview.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeReviewUpdateManyMutationInput | UserPerfumeReviewUncheckedUpdateManyInput Yes
where UserPerfumeReviewWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one UserPerfumeReview

// Update or create a UserPerfumeReview
const userPerfumeReview = await prisma.userPerfumeReview.upsert({
  create: {
    // ... data to create a UserPerfumeReview
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserPerfumeReview we want to update
  }
})

Input

Name Type Required
where UserPerfumeReviewWhereUniqueInput Yes
create UserPerfumeReviewCreateInput | UserPerfumeReviewUncheckedCreateInput Yes
update UserPerfumeReviewUpdateInput | UserPerfumeReviewUncheckedUpdateInput Yes

Output

Required: Yes
List: No

UserPerfumeWishlist

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
userId String
  • -
Yes -
perfumeId String
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
  • @updatedAt
Yes -
isPublic Boolean
  • @default(false)
Yes -
perfume Perfume
  • -
Yes -
user User
  • -
Yes -

Operations

findUnique

Find zero or one UserPerfumeWishlist

// Get one UserPerfumeWishlist
const userPerfumeWishlist = await prisma.userPerfumeWishlist.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeWishlistWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first UserPerfumeWishlist

// Get one UserPerfumeWishlist
const userPerfumeWishlist = await prisma.userPerfumeWishlist.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeWishlistWhereInput No
orderBy UserPerfumeWishlistOrderByWithRelationInput[] | UserPerfumeWishlistOrderByWithRelationInput No
cursor UserPerfumeWishlistWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeWishlistScalarFieldEnum | UserPerfumeWishlistScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more UserPerfumeWishlist

// Get all UserPerfumeWishlist
const UserPerfumeWishlist = await prisma.userPerfumeWishlist.findMany()
// Get first 10 UserPerfumeWishlist
const UserPerfumeWishlist = await prisma.userPerfumeWishlist.findMany({ take: 10 })

Input

Name Type Required
where UserPerfumeWishlistWhereInput No
orderBy UserPerfumeWishlistOrderByWithRelationInput[] | UserPerfumeWishlistOrderByWithRelationInput No
cursor UserPerfumeWishlistWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeWishlistScalarFieldEnum | UserPerfumeWishlistScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one UserPerfumeWishlist

// Create one UserPerfumeWishlist
const UserPerfumeWishlist = await prisma.userPerfumeWishlist.create({
  data: {
    // ... data to create a UserPerfumeWishlist
  }
})

Input

Name Type Required
data UserPerfumeWishlistCreateInput | UserPerfumeWishlistUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one UserPerfumeWishlist

// Delete one UserPerfumeWishlist
const UserPerfumeWishlist = await prisma.userPerfumeWishlist.delete({
  where: {
    // ... filter to delete one UserPerfumeWishlist
  }
})

Input

Name Type Required
where UserPerfumeWishlistWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one UserPerfumeWishlist

// Update one UserPerfumeWishlist
const userPerfumeWishlist = await prisma.userPerfumeWishlist.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeWishlistUpdateInput | UserPerfumeWishlistUncheckedUpdateInput Yes
where UserPerfumeWishlistWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more UserPerfumeWishlist

// Delete a few UserPerfumeWishlist
const { count } = await prisma.userPerfumeWishlist.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeWishlistWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one UserPerfumeWishlist

const { count } = await prisma.userPerfumeWishlist.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeWishlistUpdateManyMutationInput | UserPerfumeWishlistUncheckedUpdateManyInput Yes
where UserPerfumeWishlistWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one UserPerfumeWishlist

// Update or create a UserPerfumeWishlist
const userPerfumeWishlist = await prisma.userPerfumeWishlist.upsert({
  create: {
    // ... data to create a UserPerfumeWishlist
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserPerfumeWishlist we want to update
  }
})

Input

Name Type Required
where UserPerfumeWishlistWhereUniqueInput Yes
create UserPerfumeWishlistCreateInput | UserPerfumeWishlistUncheckedCreateInput Yes
update UserPerfumeWishlistUpdateInput | UserPerfumeWishlistUncheckedUpdateInput Yes

Output

Required: Yes
List: No

UserPerfumeComment

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
userId String
  • -
Yes -
perfumeId String
  • -
Yes -
userPerfumeId String
  • -
Yes -
comment String
  • -
Yes -
isPublic Boolean
  • @default(false)
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
perfume Perfume
  • -
Yes -
user User
  • -
Yes -
userPerfume UserPerfume
  • -
Yes -

Operations

findUnique

Find zero or one UserPerfumeComment

// Get one UserPerfumeComment
const userPerfumeComment = await prisma.userPerfumeComment.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeCommentWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first UserPerfumeComment

// Get one UserPerfumeComment
const userPerfumeComment = await prisma.userPerfumeComment.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeCommentWhereInput No
orderBy UserPerfumeCommentOrderByWithRelationInput[] | UserPerfumeCommentOrderByWithRelationInput No
cursor UserPerfumeCommentWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeCommentScalarFieldEnum | UserPerfumeCommentScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more UserPerfumeComment

// Get all UserPerfumeComment
const UserPerfumeComment = await prisma.userPerfumeComment.findMany()
// Get first 10 UserPerfumeComment
const UserPerfumeComment = await prisma.userPerfumeComment.findMany({ take: 10 })

Input

Name Type Required
where UserPerfumeCommentWhereInput No
orderBy UserPerfumeCommentOrderByWithRelationInput[] | UserPerfumeCommentOrderByWithRelationInput No
cursor UserPerfumeCommentWhereUniqueInput No
take Int No
skip Int No
distinct UserPerfumeCommentScalarFieldEnum | UserPerfumeCommentScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one UserPerfumeComment

// Create one UserPerfumeComment
const UserPerfumeComment = await prisma.userPerfumeComment.create({
  data: {
    // ... data to create a UserPerfumeComment
  }
})

Input

Name Type Required
data UserPerfumeCommentCreateInput | UserPerfumeCommentUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one UserPerfumeComment

// Delete one UserPerfumeComment
const UserPerfumeComment = await prisma.userPerfumeComment.delete({
  where: {
    // ... filter to delete one UserPerfumeComment
  }
})

Input

Name Type Required
where UserPerfumeCommentWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one UserPerfumeComment

// Update one UserPerfumeComment
const userPerfumeComment = await prisma.userPerfumeComment.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeCommentUpdateInput | UserPerfumeCommentUncheckedUpdateInput Yes
where UserPerfumeCommentWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more UserPerfumeComment

// Delete a few UserPerfumeComment
const { count } = await prisma.userPerfumeComment.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserPerfumeCommentWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one UserPerfumeComment

const { count } = await prisma.userPerfumeComment.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserPerfumeCommentUpdateManyMutationInput | UserPerfumeCommentUncheckedUpdateManyInput Yes
where UserPerfumeCommentWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one UserPerfumeComment

// Update or create a UserPerfumeComment
const userPerfumeComment = await prisma.userPerfumeComment.upsert({
  create: {
    // ... data to create a UserPerfumeComment
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserPerfumeComment we want to update
  }
})

Input

Name Type Required
where UserPerfumeCommentWhereUniqueInput Yes
create UserPerfumeCommentCreateInput | UserPerfumeCommentUncheckedCreateInput Yes
update UserPerfumeCommentUpdateInput | UserPerfumeCommentUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PerfumeNotes

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
name String
  • @unique
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
  • @updatedAt
Yes -
perfumeOpenId String?
  • -
No -
perfumeHeartId String?
  • -
No -
perfumeCloseId String?
  • -
No -
perfumeNoteRelations PerfumeNoteRelation[]
  • -
Yes -

Operations

findUnique

Find zero or one PerfumeNotes

// Get one PerfumeNotes
const perfumeNotes = await prisma.perfumeNotes.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeNotesWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PerfumeNotes

// Get one PerfumeNotes
const perfumeNotes = await prisma.perfumeNotes.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeNotesWhereInput No
orderBy PerfumeNotesOrderByWithRelationInput[] | PerfumeNotesOrderByWithRelationInput No
cursor PerfumeNotesWhereUniqueInput No
take Int No
skip Int No
distinct PerfumeNotesScalarFieldEnum | PerfumeNotesScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PerfumeNotes

// Get all PerfumeNotes
const PerfumeNotes = await prisma.perfumeNotes.findMany()
// Get first 10 PerfumeNotes
const PerfumeNotes = await prisma.perfumeNotes.findMany({ take: 10 })

Input

Name Type Required
where PerfumeNotesWhereInput No
orderBy PerfumeNotesOrderByWithRelationInput[] | PerfumeNotesOrderByWithRelationInput No
cursor PerfumeNotesWhereUniqueInput No
take Int No
skip Int No
distinct PerfumeNotesScalarFieldEnum | PerfumeNotesScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PerfumeNotes

// Create one PerfumeNotes
const PerfumeNotes = await prisma.perfumeNotes.create({
  data: {
    // ... data to create a PerfumeNotes
  }
})

Input

Name Type Required
data PerfumeNotesCreateInput | PerfumeNotesUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PerfumeNotes

// Delete one PerfumeNotes
const PerfumeNotes = await prisma.perfumeNotes.delete({
  where: {
    // ... filter to delete one PerfumeNotes
  }
})

Input

Name Type Required
where PerfumeNotesWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PerfumeNotes

// Update one PerfumeNotes
const perfumeNotes = await prisma.perfumeNotes.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PerfumeNotesUpdateInput | PerfumeNotesUncheckedUpdateInput Yes
where PerfumeNotesWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PerfumeNotes

// Delete a few PerfumeNotes
const { count } = await prisma.perfumeNotes.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeNotesWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one PerfumeNotes

const { count } = await prisma.perfumeNotes.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PerfumeNotesUpdateManyMutationInput | PerfumeNotesUncheckedUpdateManyInput Yes
where PerfumeNotesWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one PerfumeNotes

// Update or create a PerfumeNotes
const perfumeNotes = await prisma.perfumeNotes.upsert({
  create: {
    // ... data to create a PerfumeNotes
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PerfumeNotes we want to update
  }
})

Input

Name Type Required
where PerfumeNotesWhereUniqueInput Yes
create PerfumeNotesCreateInput | PerfumeNotesUncheckedCreateInput Yes
update PerfumeNotesUpdateInput | PerfumeNotesUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PerfumeNoteRelation

Name Value
@@unique
  • perfumeId
  • noteId
  • noteType
@@index
  • perfumeId
  • noteId
  • noteType

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
perfumeId String
  • -
Yes -
noteId String
  • -
Yes -
noteType PerfumeNoteType
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
  • @updatedAt
Yes -
perfume Perfume
  • -
Yes -
note PerfumeNotes
  • -
Yes -

Operations

findUnique

Find zero or one PerfumeNoteRelation

// Get one PerfumeNoteRelation
const perfumeNoteRelation = await prisma.perfumeNoteRelation.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeNoteRelationWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PerfumeNoteRelation

// Get one PerfumeNoteRelation
const perfumeNoteRelation = await prisma.perfumeNoteRelation.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeNoteRelationWhereInput No
orderBy PerfumeNoteRelationOrderByWithRelationInput[] | PerfumeNoteRelationOrderByWithRelationInput No
cursor PerfumeNoteRelationWhereUniqueInput No
take Int No
skip Int No
distinct PerfumeNoteRelationScalarFieldEnum | PerfumeNoteRelationScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PerfumeNoteRelation

// Get all PerfumeNoteRelation
const PerfumeNoteRelation = await prisma.perfumeNoteRelation.findMany()
// Get first 10 PerfumeNoteRelation
const PerfumeNoteRelation = await prisma.perfumeNoteRelation.findMany({ take: 10 })

Input

Name Type Required
where PerfumeNoteRelationWhereInput No
orderBy PerfumeNoteRelationOrderByWithRelationInput[] | PerfumeNoteRelationOrderByWithRelationInput No
cursor PerfumeNoteRelationWhereUniqueInput No
take Int No
skip Int No
distinct PerfumeNoteRelationScalarFieldEnum | PerfumeNoteRelationScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PerfumeNoteRelation

// Create one PerfumeNoteRelation
const PerfumeNoteRelation = await prisma.perfumeNoteRelation.create({
  data: {
    // ... data to create a PerfumeNoteRelation
  }
})

Input

Name Type Required
data PerfumeNoteRelationCreateInput | PerfumeNoteRelationUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PerfumeNoteRelation

// Delete one PerfumeNoteRelation
const PerfumeNoteRelation = await prisma.perfumeNoteRelation.delete({
  where: {
    // ... filter to delete one PerfumeNoteRelation
  }
})

Input

Name Type Required
where PerfumeNoteRelationWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PerfumeNoteRelation

// Update one PerfumeNoteRelation
const perfumeNoteRelation = await prisma.perfumeNoteRelation.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PerfumeNoteRelationUpdateInput | PerfumeNoteRelationUncheckedUpdateInput Yes
where PerfumeNoteRelationWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PerfumeNoteRelation

// Delete a few PerfumeNoteRelation
const { count } = await prisma.perfumeNoteRelation.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PerfumeNoteRelationWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one PerfumeNoteRelation

const { count } = await prisma.perfumeNoteRelation.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PerfumeNoteRelationUpdateManyMutationInput | PerfumeNoteRelationUncheckedUpdateManyInput Yes
where PerfumeNoteRelationWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one PerfumeNoteRelation

// Update or create a PerfumeNoteRelation
const perfumeNoteRelation = await prisma.perfumeNoteRelation.upsert({
  create: {
    // ... data to create a PerfumeNoteRelation
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PerfumeNoteRelation we want to update
  }
})

Input

Name Type Required
where PerfumeNoteRelationWhereUniqueInput Yes
create PerfumeNoteRelationCreateInput | PerfumeNoteRelationUncheckedCreateInput Yes
update PerfumeNoteRelationUpdateInput | PerfumeNoteRelationUncheckedUpdateInput Yes

Output

Required: Yes
List: No

WishlistNotification

Name Value
@@unique
  • userId
  • perfumeId
@@index
  • userId
  • perfumeId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
userId String
  • -
Yes -
perfumeId String
  • -
Yes -
notifiedAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
  • @updatedAt
Yes -
perfume Perfume
  • -
Yes -
user User
  • -
Yes -

Operations

findUnique

Find zero or one WishlistNotification

// Get one WishlistNotification
const wishlistNotification = await prisma.wishlistNotification.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WishlistNotificationWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first WishlistNotification

// Get one WishlistNotification
const wishlistNotification = await prisma.wishlistNotification.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WishlistNotificationWhereInput No
orderBy WishlistNotificationOrderByWithRelationInput[] | WishlistNotificationOrderByWithRelationInput No
cursor WishlistNotificationWhereUniqueInput No
take Int No
skip Int No
distinct WishlistNotificationScalarFieldEnum | WishlistNotificationScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more WishlistNotification

// Get all WishlistNotification
const WishlistNotification = await prisma.wishlistNotification.findMany()
// Get first 10 WishlistNotification
const WishlistNotification = await prisma.wishlistNotification.findMany({ take: 10 })

Input

Name Type Required
where WishlistNotificationWhereInput No
orderBy WishlistNotificationOrderByWithRelationInput[] | WishlistNotificationOrderByWithRelationInput No
cursor WishlistNotificationWhereUniqueInput No
take Int No
skip Int No
distinct WishlistNotificationScalarFieldEnum | WishlistNotificationScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one WishlistNotification

// Create one WishlistNotification
const WishlistNotification = await prisma.wishlistNotification.create({
  data: {
    // ... data to create a WishlistNotification
  }
})

Input

Name Type Required
data WishlistNotificationCreateInput | WishlistNotificationUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one WishlistNotification

// Delete one WishlistNotification
const WishlistNotification = await prisma.wishlistNotification.delete({
  where: {
    // ... filter to delete one WishlistNotification
  }
})

Input

Name Type Required
where WishlistNotificationWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one WishlistNotification

// Update one WishlistNotification
const wishlistNotification = await prisma.wishlistNotification.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data WishlistNotificationUpdateInput | WishlistNotificationUncheckedUpdateInput Yes
where WishlistNotificationWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more WishlistNotification

// Delete a few WishlistNotification
const { count } = await prisma.wishlistNotification.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WishlistNotificationWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one WishlistNotification

const { count } = await prisma.wishlistNotification.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data WishlistNotificationUpdateManyMutationInput | WishlistNotificationUncheckedUpdateManyInput Yes
where WishlistNotificationWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one WishlistNotification

// Update or create a WishlistNotification
const wishlistNotification = await prisma.wishlistNotification.upsert({
  create: {
    // ... data to create a WishlistNotification
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the WishlistNotification we want to update
  }
})

Input

Name Type Required
where WishlistNotificationWhereUniqueInput Yes
create WishlistNotificationCreateInput | WishlistNotificationUncheckedCreateInput Yes
update WishlistNotificationUpdateInput | WishlistNotificationUncheckedUpdateInput Yes

Output

Required: Yes
List: No

TraderFeedback

Name Value
@@unique
  • traderId
  • reviewerId
@@index
  • traderId
  • reviewerId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
traderId String
  • -
Yes -
reviewerId String
  • -
Yes -
rating Int
  • -
Yes Expected 1-5 scale; enforce in application logic.
comment String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
trader User
  • -
Yes -
reviewer User
  • -
Yes -

Operations

findUnique

Find zero or one TraderFeedback

// Get one TraderFeedback
const traderFeedback = await prisma.traderFeedback.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TraderFeedbackWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first TraderFeedback

// Get one TraderFeedback
const traderFeedback = await prisma.traderFeedback.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TraderFeedbackWhereInput No
orderBy TraderFeedbackOrderByWithRelationInput[] | TraderFeedbackOrderByWithRelationInput No
cursor TraderFeedbackWhereUniqueInput No
take Int No
skip Int No
distinct TraderFeedbackScalarFieldEnum | TraderFeedbackScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more TraderFeedback

// Get all TraderFeedback
const TraderFeedback = await prisma.traderFeedback.findMany()
// Get first 10 TraderFeedback
const TraderFeedback = await prisma.traderFeedback.findMany({ take: 10 })

Input

Name Type Required
where TraderFeedbackWhereInput No
orderBy TraderFeedbackOrderByWithRelationInput[] | TraderFeedbackOrderByWithRelationInput No
cursor TraderFeedbackWhereUniqueInput No
take Int No
skip Int No
distinct TraderFeedbackScalarFieldEnum | TraderFeedbackScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one TraderFeedback

// Create one TraderFeedback
const TraderFeedback = await prisma.traderFeedback.create({
  data: {
    // ... data to create a TraderFeedback
  }
})

Input

Name Type Required
data TraderFeedbackCreateInput | TraderFeedbackUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one TraderFeedback

// Delete one TraderFeedback
const TraderFeedback = await prisma.traderFeedback.delete({
  where: {
    // ... filter to delete one TraderFeedback
  }
})

Input

Name Type Required
where TraderFeedbackWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one TraderFeedback

// Update one TraderFeedback
const traderFeedback = await prisma.traderFeedback.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TraderFeedbackUpdateInput | TraderFeedbackUncheckedUpdateInput Yes
where TraderFeedbackWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more TraderFeedback

// Delete a few TraderFeedback
const { count } = await prisma.traderFeedback.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TraderFeedbackWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one TraderFeedback

const { count } = await prisma.traderFeedback.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TraderFeedbackUpdateManyMutationInput | TraderFeedbackUncheckedUpdateManyInput Yes
where TraderFeedbackWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one TraderFeedback

// Update or create a TraderFeedback
const traderFeedback = await prisma.traderFeedback.upsert({
  create: {
    // ... data to create a TraderFeedback
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the TraderFeedback we want to update
  }
})

Input

Name Type Required
where TraderFeedbackWhereUniqueInput Yes
create TraderFeedbackCreateInput | TraderFeedbackUncheckedCreateInput Yes
update TraderFeedbackUpdateInput | TraderFeedbackUncheckedUpdateInput Yes

Output

Required: Yes
List: No

SecurityAuditLog

Fields

Name Type Attributes Required Comment
id String
  • @id
Yes -
userId String?
  • -
No -
action SecurityAuditAction
  • -
Yes -
severity SecurityAuditSeverity
  • @default(info)
Yes -
resource String?
  • -
No -
resourceId String?
  • -
No -
ipAddress String?
  • -
No -
userAgent String?
  • -
No -
details Json?
  • -
No -
metadata Json?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
User User?
  • -
No -

Operations

findUnique

Find zero or one SecurityAuditLog

// Get one SecurityAuditLog
const securityAuditLog = await prisma.securityAuditLog.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SecurityAuditLogWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first SecurityAuditLog

// Get one SecurityAuditLog
const securityAuditLog = await prisma.securityAuditLog.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SecurityAuditLogWhereInput No
orderBy SecurityAuditLogOrderByWithRelationInput[] | SecurityAuditLogOrderByWithRelationInput No
cursor SecurityAuditLogWhereUniqueInput No
take Int No
skip Int No
distinct SecurityAuditLogScalarFieldEnum | SecurityAuditLogScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more SecurityAuditLog

// Get all SecurityAuditLog
const SecurityAuditLog = await prisma.securityAuditLog.findMany()
// Get first 10 SecurityAuditLog
const SecurityAuditLog = await prisma.securityAuditLog.findMany({ take: 10 })

Input

Name Type Required
where SecurityAuditLogWhereInput No
orderBy SecurityAuditLogOrderByWithRelationInput[] | SecurityAuditLogOrderByWithRelationInput No
cursor SecurityAuditLogWhereUniqueInput No
take Int No
skip Int No
distinct SecurityAuditLogScalarFieldEnum | SecurityAuditLogScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one SecurityAuditLog

// Create one SecurityAuditLog
const SecurityAuditLog = await prisma.securityAuditLog.create({
  data: {
    // ... data to create a SecurityAuditLog
  }
})

Input

Name Type Required
data SecurityAuditLogCreateInput | SecurityAuditLogUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one SecurityAuditLog

// Delete one SecurityAuditLog
const SecurityAuditLog = await prisma.securityAuditLog.delete({
  where: {
    // ... filter to delete one SecurityAuditLog
  }
})

Input

Name Type Required
where SecurityAuditLogWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one SecurityAuditLog

// Update one SecurityAuditLog
const securityAuditLog = await prisma.securityAuditLog.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SecurityAuditLogUpdateInput | SecurityAuditLogUncheckedUpdateInput Yes
where SecurityAuditLogWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more SecurityAuditLog

// Delete a few SecurityAuditLog
const { count } = await prisma.securityAuditLog.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SecurityAuditLogWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one SecurityAuditLog

const { count } = await prisma.securityAuditLog.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SecurityAuditLogUpdateManyMutationInput | SecurityAuditLogUncheckedUpdateManyInput Yes
where SecurityAuditLogWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one SecurityAuditLog

// Update or create a SecurityAuditLog
const securityAuditLog = await prisma.securityAuditLog.upsert({
  create: {
    // ... data to create a SecurityAuditLog
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the SecurityAuditLog we want to update
  }
})

Input

Name Type Required
where SecurityAuditLogWhereUniqueInput Yes
create SecurityAuditLogCreateInput | SecurityAuditLogUncheckedCreateInput Yes
update SecurityAuditLogUpdateInput | SecurityAuditLogUncheckedUpdateInput Yes

Output

Required: Yes
List: No

UserAlert

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
userId String
  • -
Yes -
perfumeId String
  • -
Yes -
alertType AlertType
  • -
Yes -
title String
  • -
Yes -
message String
  • -
Yes -
isRead Boolean
  • @default(false)
Yes -
isDismissed Boolean
  • @default(false)
Yes -
metadata Json?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
readAt DateTime?
  • -
No -
dismissedAt DateTime?
  • -
No -
Perfume Perfume
  • -
Yes -
User User
  • -
Yes -

Operations

findUnique

Find zero or one UserAlert

// Get one UserAlert
const userAlert = await prisma.userAlert.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserAlertWhereUniqueInput Yes

Output

Type: UserAlert
Required: No
List: No

findFirst

Find first UserAlert

// Get one UserAlert
const userAlert = await prisma.userAlert.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserAlertWhereInput No
orderBy UserAlertOrderByWithRelationInput[] | UserAlertOrderByWithRelationInput No
cursor UserAlertWhereUniqueInput No
take Int No
skip Int No
distinct UserAlertScalarFieldEnum | UserAlertScalarFieldEnum[] No

Output

Type: UserAlert
Required: No
List: No

findMany

Find zero or more UserAlert

// Get all UserAlert
const UserAlert = await prisma.userAlert.findMany()
// Get first 10 UserAlert
const UserAlert = await prisma.userAlert.findMany({ take: 10 })

Input

Name Type Required
where UserAlertWhereInput No
orderBy UserAlertOrderByWithRelationInput[] | UserAlertOrderByWithRelationInput No
cursor UserAlertWhereUniqueInput No
take Int No
skip Int No
distinct UserAlertScalarFieldEnum | UserAlertScalarFieldEnum[] No

Output

Type: UserAlert
Required: Yes
List: Yes

create

Create one UserAlert

// Create one UserAlert
const UserAlert = await prisma.userAlert.create({
  data: {
    // ... data to create a UserAlert
  }
})

Input

Name Type Required
data UserAlertCreateInput | UserAlertUncheckedCreateInput Yes

Output

Type: UserAlert
Required: Yes
List: No

delete

Delete one UserAlert

// Delete one UserAlert
const UserAlert = await prisma.userAlert.delete({
  where: {
    // ... filter to delete one UserAlert
  }
})

Input

Name Type Required
where UserAlertWhereUniqueInput Yes

Output

Type: UserAlert
Required: No
List: No

update

Update one UserAlert

// Update one UserAlert
const userAlert = await prisma.userAlert.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserAlertUpdateInput | UserAlertUncheckedUpdateInput Yes
where UserAlertWhereUniqueInput Yes

Output

Type: UserAlert
Required: No
List: No

deleteMany

Delete zero or more UserAlert

// Delete a few UserAlert
const { count } = await prisma.userAlert.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserAlertWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one UserAlert

const { count } = await prisma.userAlert.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserAlertUpdateManyMutationInput | UserAlertUncheckedUpdateManyInput Yes
where UserAlertWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one UserAlert

// Update or create a UserAlert
const userAlert = await prisma.userAlert.upsert({
  create: {
    // ... data to create a UserAlert
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserAlert we want to update
  }
})

Input

Name Type Required
where UserAlertWhereUniqueInput Yes
create UserAlertCreateInput | UserAlertUncheckedCreateInput Yes
update UserAlertUpdateInput | UserAlertUncheckedUpdateInput Yes

Output

Type: UserAlert
Required: Yes
List: No

UserAlertPreferences

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
userId String
  • @unique
Yes -
wishlistAlertsEnabled Boolean
  • @default(true)
Yes -
decantAlertsEnabled Boolean
  • @default(true)
Yes -
emailWishlistAlerts Boolean
  • @default(false)
Yes -
emailDecantAlerts Boolean
  • @default(false)
Yes -
maxAlerts Int
  • @default(10)
Yes -
User User
  • -
Yes -

Operations

findUnique

Find zero or one UserAlertPreferences

// Get one UserAlertPreferences
const userAlertPreferences = await prisma.userAlertPreferences.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserAlertPreferencesWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first UserAlertPreferences

// Get one UserAlertPreferences
const userAlertPreferences = await prisma.userAlertPreferences.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserAlertPreferencesWhereInput No
orderBy UserAlertPreferencesOrderByWithRelationInput[] | UserAlertPreferencesOrderByWithRelationInput No
cursor UserAlertPreferencesWhereUniqueInput No
take Int No
skip Int No
distinct UserAlertPreferencesScalarFieldEnum | UserAlertPreferencesScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more UserAlertPreferences

// Get all UserAlertPreferences
const UserAlertPreferences = await prisma.userAlertPreferences.findMany()
// Get first 10 UserAlertPreferences
const UserAlertPreferences = await prisma.userAlertPreferences.findMany({ take: 10 })

Input

Name Type Required
where UserAlertPreferencesWhereInput No
orderBy UserAlertPreferencesOrderByWithRelationInput[] | UserAlertPreferencesOrderByWithRelationInput No
cursor UserAlertPreferencesWhereUniqueInput No
take Int No
skip Int No
distinct UserAlertPreferencesScalarFieldEnum | UserAlertPreferencesScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one UserAlertPreferences

// Create one UserAlertPreferences
const UserAlertPreferences = await prisma.userAlertPreferences.create({
  data: {
    // ... data to create a UserAlertPreferences
  }
})

Input

Name Type Required
data UserAlertPreferencesCreateInput | UserAlertPreferencesUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one UserAlertPreferences

// Delete one UserAlertPreferences
const UserAlertPreferences = await prisma.userAlertPreferences.delete({
  where: {
    // ... filter to delete one UserAlertPreferences
  }
})

Input

Name Type Required
where UserAlertPreferencesWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one UserAlertPreferences

// Update one UserAlertPreferences
const userAlertPreferences = await prisma.userAlertPreferences.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserAlertPreferencesUpdateInput | UserAlertPreferencesUncheckedUpdateInput Yes
where UserAlertPreferencesWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more UserAlertPreferences

// Delete a few UserAlertPreferences
const { count } = await prisma.userAlertPreferences.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserAlertPreferencesWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one UserAlertPreferences

const { count } = await prisma.userAlertPreferences.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserAlertPreferencesUpdateManyMutationInput | UserAlertPreferencesUncheckedUpdateManyInput Yes
where UserAlertPreferencesWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one UserAlertPreferences

// Update or create a UserAlertPreferences
const userAlertPreferences = await prisma.userAlertPreferences.upsert({
  create: {
    // ... data to create a UserAlertPreferences
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserAlertPreferences we want to update
  }
})

Input

Name Type Required
where UserAlertPreferencesWhereUniqueInput Yes
create UserAlertPreferencesCreateInput | UserAlertPreferencesUncheckedCreateInput Yes
update UserAlertPreferencesUpdateInput | UserAlertPreferencesUncheckedUpdateInput Yes

Output

Required: Yes
List: No

PendingSubmission

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
submissionType PendingSubmissionType
  • -
Yes -
submittedBy String?
  • -
No -
status PendingSubmissionStatus
  • @default(pending)
Yes -
submissionData Json
  • -
Yes -
adminNotes String?
  • -
No -
reviewedBy String?
  • -
No -
reviewedAt DateTime?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -
submittedByUser User?
  • -
No -
reviewedByUser User?
  • -
No -

Operations

findUnique

Find zero or one PendingSubmission

// Get one PendingSubmission
const pendingSubmission = await prisma.pendingSubmission.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PendingSubmissionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PendingSubmission

// Get one PendingSubmission
const pendingSubmission = await prisma.pendingSubmission.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PendingSubmissionWhereInput No
orderBy PendingSubmissionOrderByWithRelationInput[] | PendingSubmissionOrderByWithRelationInput No
cursor PendingSubmissionWhereUniqueInput No
take Int No
skip Int No
distinct PendingSubmissionScalarFieldEnum | PendingSubmissionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PendingSubmission

// Get all PendingSubmission
const PendingSubmission = await prisma.pendingSubmission.findMany()
// Get first 10 PendingSubmission
const PendingSubmission = await prisma.pendingSubmission.findMany({ take: 10 })

Input

Name Type Required
where PendingSubmissionWhereInput No
orderBy PendingSubmissionOrderByWithRelationInput[] | PendingSubmissionOrderByWithRelationInput No
cursor PendingSubmissionWhereUniqueInput No
take Int No
skip Int No
distinct PendingSubmissionScalarFieldEnum | PendingSubmissionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PendingSubmission

// Create one PendingSubmission
const PendingSubmission = await prisma.pendingSubmission.create({
  data: {
    // ... data to create a PendingSubmission
  }
})

Input

Name Type Required
data PendingSubmissionCreateInput | PendingSubmissionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PendingSubmission

// Delete one PendingSubmission
const PendingSubmission = await prisma.pendingSubmission.delete({
  where: {
    // ... filter to delete one PendingSubmission
  }
})

Input

Name Type Required
where PendingSubmissionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PendingSubmission

// Update one PendingSubmission
const pendingSubmission = await prisma.pendingSubmission.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PendingSubmissionUpdateInput | PendingSubmissionUncheckedUpdateInput Yes
where PendingSubmissionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PendingSubmission

// Delete a few PendingSubmission
const { count } = await prisma.pendingSubmission.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PendingSubmissionWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one PendingSubmission

const { count } = await prisma.pendingSubmission.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PendingSubmissionUpdateManyMutationInput | PendingSubmissionUncheckedUpdateManyInput Yes
where PendingSubmissionWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one PendingSubmission

// Update or create a PendingSubmission
const pendingSubmission = await prisma.pendingSubmission.upsert({
  create: {
    // ... data to create a PendingSubmission
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PendingSubmission we want to update
  }
})

Input

Name Type Required
where PendingSubmissionWhereUniqueInput Yes
create PendingSubmissionCreateInput | PendingSubmissionUncheckedCreateInput Yes
update PendingSubmissionUpdateInput | PendingSubmissionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

TraderContactMessage

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
senderId String
  • -
Yes -
recipientId String
  • -
Yes -
subject String?
  • -
No -
message String
  • -
Yes -
read Boolean
  • @default(false)
Yes -
createdAt DateTime
  • @default(now())
Yes -
sender User
  • -
Yes -
recipient User
  • -
Yes -

Operations

findUnique

Find zero or one TraderContactMessage

// Get one TraderContactMessage
const traderContactMessage = await prisma.traderContactMessage.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TraderContactMessageWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first TraderContactMessage

// Get one TraderContactMessage
const traderContactMessage = await prisma.traderContactMessage.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TraderContactMessageWhereInput No
orderBy TraderContactMessageOrderByWithRelationInput[] | TraderContactMessageOrderByWithRelationInput No
cursor TraderContactMessageWhereUniqueInput No
take Int No
skip Int No
distinct TraderContactMessageScalarFieldEnum | TraderContactMessageScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more TraderContactMessage

// Get all TraderContactMessage
const TraderContactMessage = await prisma.traderContactMessage.findMany()
// Get first 10 TraderContactMessage
const TraderContactMessage = await prisma.traderContactMessage.findMany({ take: 10 })

Input

Name Type Required
where TraderContactMessageWhereInput No
orderBy TraderContactMessageOrderByWithRelationInput[] | TraderContactMessageOrderByWithRelationInput No
cursor TraderContactMessageWhereUniqueInput No
take Int No
skip Int No
distinct TraderContactMessageScalarFieldEnum | TraderContactMessageScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one TraderContactMessage

// Create one TraderContactMessage
const TraderContactMessage = await prisma.traderContactMessage.create({
  data: {
    // ... data to create a TraderContactMessage
  }
})

Input

Name Type Required
data TraderContactMessageCreateInput | TraderContactMessageUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one TraderContactMessage

// Delete one TraderContactMessage
const TraderContactMessage = await prisma.traderContactMessage.delete({
  where: {
    // ... filter to delete one TraderContactMessage
  }
})

Input

Name Type Required
where TraderContactMessageWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one TraderContactMessage

// Update one TraderContactMessage
const traderContactMessage = await prisma.traderContactMessage.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TraderContactMessageUpdateInput | TraderContactMessageUncheckedUpdateInput Yes
where TraderContactMessageWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more TraderContactMessage

// Delete a few TraderContactMessage
const { count } = await prisma.traderContactMessage.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TraderContactMessageWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one TraderContactMessage

const { count } = await prisma.traderContactMessage.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TraderContactMessageUpdateManyMutationInput | TraderContactMessageUncheckedUpdateManyInput Yes
where TraderContactMessageWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one TraderContactMessage

// Update or create a TraderContactMessage
const traderContactMessage = await prisma.traderContactMessage.upsert({
  create: {
    // ... data to create a TraderContactMessage
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the TraderContactMessage we want to update
  }
})

Input

Name Type Required
where TraderContactMessageWhereUniqueInput Yes
create TraderContactMessageCreateInput | TraderContactMessageUncheckedCreateInput Yes
update TraderContactMessageUpdateInput | TraderContactMessageUncheckedUpdateInput Yes

Output

Required: Yes
List: No

MigrationState

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid(1))
Yes -
tableName String
  • @unique
Yes -
lastMigratedAt DateTime
  • -
Yes -
recordCount Int
  • @default(0)
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @updatedAt
Yes -

Operations

findUnique

Find zero or one MigrationState

// Get one MigrationState
const migrationState = await prisma.migrationState.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MigrationStateWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first MigrationState

// Get one MigrationState
const migrationState = await prisma.migrationState.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MigrationStateWhereInput No
orderBy MigrationStateOrderByWithRelationInput[] | MigrationStateOrderByWithRelationInput No
cursor MigrationStateWhereUniqueInput No
take Int No
skip Int No
distinct MigrationStateScalarFieldEnum | MigrationStateScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more MigrationState

// Get all MigrationState
const MigrationState = await prisma.migrationState.findMany()
// Get first 10 MigrationState
const MigrationState = await prisma.migrationState.findMany({ take: 10 })

Input

Name Type Required
where MigrationStateWhereInput No
orderBy MigrationStateOrderByWithRelationInput[] | MigrationStateOrderByWithRelationInput No
cursor MigrationStateWhereUniqueInput No
take Int No
skip Int No
distinct MigrationStateScalarFieldEnum | MigrationStateScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one MigrationState

// Create one MigrationState
const MigrationState = await prisma.migrationState.create({
  data: {
    // ... data to create a MigrationState
  }
})

Input

Name Type Required
data MigrationStateCreateInput | MigrationStateUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one MigrationState

// Delete one MigrationState
const MigrationState = await prisma.migrationState.delete({
  where: {
    // ... filter to delete one MigrationState
  }
})

Input

Name Type Required
where MigrationStateWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one MigrationState

// Update one MigrationState
const migrationState = await prisma.migrationState.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MigrationStateUpdateInput | MigrationStateUncheckedUpdateInput Yes
where MigrationStateWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more MigrationState

// Delete a few MigrationState
const { count } = await prisma.migrationState.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MigrationStateWhereInput No
limit Int No

Output

Required: Yes
List: No

updateMany

Update zero or one MigrationState

const { count } = await prisma.migrationState.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MigrationStateUpdateManyMutationInput | MigrationStateUncheckedUpdateManyInput Yes
where MigrationStateWhereInput No
limit Int No

Output

Required: Yes
List: No

upsert

Create or update one MigrationState

// Update or create a MigrationState
const migrationState = await prisma.migrationState.upsert({
  create: {
    // ... data to create a MigrationState
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the MigrationState we want to update
  }
})

Input

Name Type Required
where MigrationStateWhereUniqueInput Yes
create MigrationStateCreateInput | MigrationStateUncheckedCreateInput Yes
update MigrationStateUpdateInput | MigrationStateUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Types

Input Types

UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
id StringFilter | String No
email StringFilter | String No
password StringFilter | String No
firstName StringNullableFilter | String | Null Yes
lastName StringNullableFilter | String | Null Yes
username StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
role EnumUserRoleFilter | UserRole No
SecurityAuditLog SecurityAuditLogListRelationFilter No
UserAlert UserAlertListRelationFilter No
alertPreferences UserAlertPreferencesNullableScalarRelationFilter | UserAlertPreferencesWhereInput | Null Yes
UserPerfume UserPerfumeListRelationFilter No
userPerfumeComments UserPerfumeCommentListRelationFilter No
UserPerfumeRating UserPerfumeRatingListRelationFilter No
UserPerfumeReview UserPerfumeReviewListRelationFilter No
UserPerfumeWishlist UserPerfumeWishlistListRelationFilter No
wishlistNotifications WishlistNotificationListRelationFilter No
traderFeedbackReceived TraderFeedbackListRelationFilter No
traderFeedbackLeft TraderFeedbackListRelationFilter No
pendingSubmissions PendingSubmissionListRelationFilter No
reviewedSubmissions PendingSubmissionListRelationFilter No
traderContactMessagesSent TraderContactMessageListRelationFilter No
traderContactMessagesReceived TraderContactMessageListRelationFilter No

UserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
email SortOrder No
password SortOrder No
firstName SortOrder | SortOrderInput No
lastName SortOrder | SortOrderInput No
username SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
role SortOrder No
SecurityAuditLog SecurityAuditLogOrderByRelationAggregateInput No
UserAlert UserAlertOrderByRelationAggregateInput No
alertPreferences UserAlertPreferencesOrderByWithRelationInput No
UserPerfume UserPerfumeOrderByRelationAggregateInput No
userPerfumeComments UserPerfumeCommentOrderByRelationAggregateInput No
UserPerfumeRating UserPerfumeRatingOrderByRelationAggregateInput No
UserPerfumeReview UserPerfumeReviewOrderByRelationAggregateInput No
UserPerfumeWishlist UserPerfumeWishlistOrderByRelationAggregateInput No
wishlistNotifications WishlistNotificationOrderByRelationAggregateInput No
traderFeedbackReceived TraderFeedbackOrderByRelationAggregateInput No
traderFeedbackLeft TraderFeedbackOrderByRelationAggregateInput No
pendingSubmissions PendingSubmissionOrderByRelationAggregateInput No
reviewedSubmissions PendingSubmissionOrderByRelationAggregateInput No
traderContactMessagesSent TraderContactMessageOrderByRelationAggregateInput No
traderContactMessagesReceived TraderContactMessageOrderByRelationAggregateInput No

UserWhereUniqueInput

Name Type Nullable
id String No
email String No
username String No
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
password StringFilter | String No
firstName StringNullableFilter | String | Null Yes
lastName StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
role EnumUserRoleFilter | UserRole No
SecurityAuditLog SecurityAuditLogListRelationFilter No
UserAlert UserAlertListRelationFilter No
alertPreferences UserAlertPreferencesNullableScalarRelationFilter | UserAlertPreferencesWhereInput | Null Yes
UserPerfume UserPerfumeListRelationFilter No
userPerfumeComments UserPerfumeCommentListRelationFilter No
UserPerfumeRating UserPerfumeRatingListRelationFilter No
UserPerfumeReview UserPerfumeReviewListRelationFilter No
UserPerfumeWishlist UserPerfumeWishlistListRelationFilter No
wishlistNotifications WishlistNotificationListRelationFilter No
traderFeedbackReceived TraderFeedbackListRelationFilter No
traderFeedbackLeft TraderFeedbackListRelationFilter No
pendingSubmissions PendingSubmissionListRelationFilter No
reviewedSubmissions PendingSubmissionListRelationFilter No
traderContactMessagesSent TraderContactMessageListRelationFilter No
traderContactMessagesReceived TraderContactMessageListRelationFilter No

UserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
email SortOrder No
password SortOrder No
firstName SortOrder | SortOrderInput No
lastName SortOrder | SortOrderInput No
username SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
role SortOrder No
_count UserCountOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No


PerfumeHouseWhereInput

Name Type Nullable
AND PerfumeHouseWhereInput | PerfumeHouseWhereInput[] No
OR PerfumeHouseWhereInput[] No
NOT PerfumeHouseWhereInput | PerfumeHouseWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
website StringNullableFilter | String | Null Yes
country StringNullableFilter | String | Null Yes
founded StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
phone StringNullableFilter | String | Null Yes
address StringNullableFilter | String | Null Yes
type EnumHouseTypeFilter | HouseType No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
slug StringFilter | String No
perfumes PerfumeListRelationFilter No

PerfumeHouseOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
website SortOrder | SortOrderInput No
country SortOrder | SortOrderInput No
founded SortOrder | SortOrderInput No
email SortOrder | SortOrderInput No
phone SortOrder | SortOrderInput No
address SortOrder | SortOrderInput No
type SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No
perfumes PerfumeOrderByRelationAggregateInput No

PerfumeHouseWhereUniqueInput

Name Type Nullable
id String No
name String No
slug String No
AND PerfumeHouseWhereInput | PerfumeHouseWhereInput[] No
OR PerfumeHouseWhereInput[] No
NOT PerfumeHouseWhereInput | PerfumeHouseWhereInput[] No
description StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
website StringNullableFilter | String | Null Yes
country StringNullableFilter | String | Null Yes
founded StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
phone StringNullableFilter | String | Null Yes
address StringNullableFilter | String | Null Yes
type EnumHouseTypeFilter | HouseType No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
perfumes PerfumeListRelationFilter No

PerfumeHouseOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
website SortOrder | SortOrderInput No
country SortOrder | SortOrderInput No
founded SortOrder | SortOrderInput No
email SortOrder | SortOrderInput No
phone SortOrder | SortOrderInput No
address SortOrder | SortOrderInput No
type SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No
_count PerfumeHouseCountOrderByAggregateInput No
_max PerfumeHouseMaxOrderByAggregateInput No
_min PerfumeHouseMinOrderByAggregateInput No

PerfumeHouseScalarWhereWithAggregatesInput

Name Type Nullable
AND PerfumeHouseScalarWhereWithAggregatesInput | PerfumeHouseScalarWhereWithAggregatesInput[] No
OR PerfumeHouseScalarWhereWithAggregatesInput[] No
NOT PerfumeHouseScalarWhereWithAggregatesInput | PerfumeHouseScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
description StringNullableWithAggregatesFilter | String | Null Yes
image StringNullableWithAggregatesFilter | String | Null Yes
website StringNullableWithAggregatesFilter | String | Null Yes
country StringNullableWithAggregatesFilter | String | Null Yes
founded StringNullableWithAggregatesFilter | String | Null Yes
email StringNullableWithAggregatesFilter | String | Null Yes
phone StringNullableWithAggregatesFilter | String | Null Yes
address StringNullableWithAggregatesFilter | String | Null Yes
type EnumHouseTypeWithAggregatesFilter | HouseType No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
slug StringWithAggregatesFilter | String No

PerfumeWhereInput

Name Type Nullable
AND PerfumeWhereInput | PerfumeWhereInput[] No
OR PerfumeWhereInput[] No
NOT PerfumeWhereInput | PerfumeWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
perfumeHouseId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
slug StringFilter | String No
perfumeHouse PerfumeHouseNullableScalarRelationFilter | PerfumeHouseWhereInput | Null Yes
perfumeNoteRelations PerfumeNoteRelationListRelationFilter No
UserAlert UserAlertListRelationFilter No
userPerfume UserPerfumeListRelationFilter No
userPerfumeComments UserPerfumeCommentListRelationFilter No
userPerfumeRating UserPerfumeRatingListRelationFilter No
userPerfumeReview UserPerfumeReviewListRelationFilter No
userPerfumeWishlist UserPerfumeWishlistListRelationFilter No
wishlistNotifications WishlistNotificationListRelationFilter No

PerfumeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
perfumeHouseId SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No
perfumeHouse PerfumeHouseOrderByWithRelationInput No
perfumeNoteRelations PerfumeNoteRelationOrderByRelationAggregateInput No
UserAlert UserAlertOrderByRelationAggregateInput No
userPerfume UserPerfumeOrderByRelationAggregateInput No
userPerfumeComments UserPerfumeCommentOrderByRelationAggregateInput No
userPerfumeRating UserPerfumeRatingOrderByRelationAggregateInput No
userPerfumeReview UserPerfumeReviewOrderByRelationAggregateInput No
userPerfumeWishlist UserPerfumeWishlistOrderByRelationAggregateInput No
wishlistNotifications WishlistNotificationOrderByRelationAggregateInput No

PerfumeWhereUniqueInput

Name Type Nullable
id String No
slug String No
AND PerfumeWhereInput | PerfumeWhereInput[] No
OR PerfumeWhereInput[] No
NOT PerfumeWhereInput | PerfumeWhereInput[] No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
perfumeHouseId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
perfumeHouse PerfumeHouseNullableScalarRelationFilter | PerfumeHouseWhereInput | Null Yes
perfumeNoteRelations PerfumeNoteRelationListRelationFilter No
UserAlert UserAlertListRelationFilter No
userPerfume UserPerfumeListRelationFilter No
userPerfumeComments UserPerfumeCommentListRelationFilter No
userPerfumeRating UserPerfumeRatingListRelationFilter No
userPerfumeReview UserPerfumeReviewListRelationFilter No
userPerfumeWishlist UserPerfumeWishlistListRelationFilter No
wishlistNotifications WishlistNotificationListRelationFilter No

PerfumeOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
perfumeHouseId SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No
_count PerfumeCountOrderByAggregateInput No
_max PerfumeMaxOrderByAggregateInput No
_min PerfumeMinOrderByAggregateInput No

PerfumeScalarWhereWithAggregatesInput

Name Type Nullable
AND PerfumeScalarWhereWithAggregatesInput | PerfumeScalarWhereWithAggregatesInput[] No
OR PerfumeScalarWhereWithAggregatesInput[] No
NOT PerfumeScalarWhereWithAggregatesInput | PerfumeScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
description StringNullableWithAggregatesFilter | String | Null Yes
image StringNullableWithAggregatesFilter | String | Null Yes
perfumeHouseId StringNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
slug StringWithAggregatesFilter | String No

UserPerfumeWhereInput

Name Type Nullable
AND UserPerfumeWhereInput | UserPerfumeWhereInput[] No
OR UserPerfumeWhereInput[] No
NOT UserPerfumeWhereInput | UserPerfumeWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
amount StringFilter | String No
available StringFilter | String No
price StringNullableFilter | String | Null Yes
placeOfPurchase StringNullableFilter | String | Null Yes
tradePrice StringNullableFilter | String | Null Yes
tradePreference EnumTradePreferenceFilter | TradePreference No
tradeOnly BoolFilter | Boolean No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
type EnumPerfumeTypeFilter | PerfumeType No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No
comments UserPerfumeCommentListRelationFilter No

UserPerfumeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
amount SortOrder No
available SortOrder No
price SortOrder | SortOrderInput No
placeOfPurchase SortOrder | SortOrderInput No
tradePrice SortOrder | SortOrderInput No
tradePreference SortOrder No
tradeOnly SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
type SortOrder No
perfume PerfumeOrderByWithRelationInput No
user UserOrderByWithRelationInput No
comments UserPerfumeCommentOrderByRelationAggregateInput No

UserPerfumeWhereUniqueInput

Name Type Nullable
id String No
AND UserPerfumeWhereInput | UserPerfumeWhereInput[] No
OR UserPerfumeWhereInput[] No
NOT UserPerfumeWhereInput | UserPerfumeWhereInput[] No
userId StringFilter | String No
perfumeId StringFilter | String No
amount StringFilter | String No
available StringFilter | String No
price StringNullableFilter | String | Null Yes
placeOfPurchase StringNullableFilter | String | Null Yes
tradePrice StringNullableFilter | String | Null Yes
tradePreference EnumTradePreferenceFilter | TradePreference No
tradeOnly BoolFilter | Boolean No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
type EnumPerfumeTypeFilter | PerfumeType No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No
comments UserPerfumeCommentListRelationFilter No

UserPerfumeOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
amount SortOrder No
available SortOrder No
price SortOrder | SortOrderInput No
placeOfPurchase SortOrder | SortOrderInput No
tradePrice SortOrder | SortOrderInput No
tradePreference SortOrder No
tradeOnly SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
type SortOrder No
_count UserPerfumeCountOrderByAggregateInput No
_max UserPerfumeMaxOrderByAggregateInput No
_min UserPerfumeMinOrderByAggregateInput No

UserPerfumeScalarWhereWithAggregatesInput

Name Type Nullable
AND UserPerfumeScalarWhereWithAggregatesInput | UserPerfumeScalarWhereWithAggregatesInput[] No
OR UserPerfumeScalarWhereWithAggregatesInput[] No
NOT UserPerfumeScalarWhereWithAggregatesInput | UserPerfumeScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
userId StringWithAggregatesFilter | String No
perfumeId StringWithAggregatesFilter | String No
amount StringWithAggregatesFilter | String No
available StringWithAggregatesFilter | String No
price StringNullableWithAggregatesFilter | String | Null Yes
placeOfPurchase StringNullableWithAggregatesFilter | String | Null Yes
tradePrice StringNullableWithAggregatesFilter | String | Null Yes
tradePreference EnumTradePreferenceWithAggregatesFilter | TradePreference No
tradeOnly BoolWithAggregatesFilter | Boolean No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
type EnumPerfumeTypeWithAggregatesFilter | PerfumeType No

UserPerfumeRatingWhereInput

Name Type Nullable
AND UserPerfumeRatingWhereInput | UserPerfumeRatingWhereInput[] No
OR UserPerfumeRatingWhereInput[] No
NOT UserPerfumeRatingWhereInput | UserPerfumeRatingWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
createdAt DateTimeFilter | DateTime No
gender IntNullableFilter | Int | Null Yes
longevity IntNullableFilter | Int | Null Yes
overall IntNullableFilter | Int | Null Yes
priceValue IntNullableFilter | Int | Null Yes
sillage IntNullableFilter | Int | Null Yes
updatedAt DateTimeFilter | DateTime No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No

UserPerfumeRatingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
gender SortOrder | SortOrderInput No
longevity SortOrder | SortOrderInput No
overall SortOrder | SortOrderInput No
priceValue SortOrder | SortOrderInput No
sillage SortOrder | SortOrderInput No
updatedAt SortOrder No
perfume PerfumeOrderByWithRelationInput No
user UserOrderByWithRelationInput No

UserPerfumeRatingWhereUniqueInput

Name Type Nullable
id String No
userId_perfumeId UserPerfumeRatingUserIdPerfumeIdCompoundUniqueInput No
AND UserPerfumeRatingWhereInput | UserPerfumeRatingWhereInput[] No
OR UserPerfumeRatingWhereInput[] No
NOT UserPerfumeRatingWhereInput | UserPerfumeRatingWhereInput[] No
userId StringFilter | String No
perfumeId StringFilter | String No
createdAt DateTimeFilter | DateTime No
gender IntNullableFilter | Int | Null Yes
longevity IntNullableFilter | Int | Null Yes
overall IntNullableFilter | Int | Null Yes
priceValue IntNullableFilter | Int | Null Yes
sillage IntNullableFilter | Int | Null Yes
updatedAt DateTimeFilter | DateTime No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No

UserPerfumeRatingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
gender SortOrder | SortOrderInput No
longevity SortOrder | SortOrderInput No
overall SortOrder | SortOrderInput No
priceValue SortOrder | SortOrderInput No
sillage SortOrder | SortOrderInput No
updatedAt SortOrder No
_count UserPerfumeRatingCountOrderByAggregateInput No
_avg UserPerfumeRatingAvgOrderByAggregateInput No
_max UserPerfumeRatingMaxOrderByAggregateInput No
_min UserPerfumeRatingMinOrderByAggregateInput No
_sum UserPerfumeRatingSumOrderByAggregateInput No

UserPerfumeRatingScalarWhereWithAggregatesInput

Name Type Nullable
AND UserPerfumeRatingScalarWhereWithAggregatesInput | UserPerfumeRatingScalarWhereWithAggregatesInput[] No
OR UserPerfumeRatingScalarWhereWithAggregatesInput[] No
NOT UserPerfumeRatingScalarWhereWithAggregatesInput | UserPerfumeRatingScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
userId StringWithAggregatesFilter | String No
perfumeId StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
gender IntNullableWithAggregatesFilter | Int | Null Yes
longevity IntNullableWithAggregatesFilter | Int | Null Yes
overall IntNullableWithAggregatesFilter | Int | Null Yes
priceValue IntNullableWithAggregatesFilter | Int | Null Yes
sillage IntNullableWithAggregatesFilter | Int | Null Yes
updatedAt DateTimeWithAggregatesFilter | DateTime No

UserPerfumeReviewWhereInput

Name Type Nullable
AND UserPerfumeReviewWhereInput | UserPerfumeReviewWhereInput[] No
OR UserPerfumeReviewWhereInput[] No
NOT UserPerfumeReviewWhereInput | UserPerfumeReviewWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
review StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
isApproved BoolFilter | Boolean No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No

UserPerfumeReviewOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
review SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isApproved SortOrder No
perfume PerfumeOrderByWithRelationInput No
user UserOrderByWithRelationInput No

UserPerfumeReviewWhereUniqueInput

Name Type Nullable
id String No
userId_perfumeId UserPerfumeReviewUserIdPerfumeIdCompoundUniqueInput No
AND UserPerfumeReviewWhereInput | UserPerfumeReviewWhereInput[] No
OR UserPerfumeReviewWhereInput[] No
NOT UserPerfumeReviewWhereInput | UserPerfumeReviewWhereInput[] No
userId StringFilter | String No
perfumeId StringFilter | String No
review StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
isApproved BoolFilter | Boolean No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No

UserPerfumeReviewOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
review SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isApproved SortOrder No
_count UserPerfumeReviewCountOrderByAggregateInput No
_max UserPerfumeReviewMaxOrderByAggregateInput No
_min UserPerfumeReviewMinOrderByAggregateInput No


UserPerfumeWishlistWhereInput

Name Type Nullable
AND UserPerfumeWishlistWhereInput | UserPerfumeWishlistWhereInput[] No
OR UserPerfumeWishlistWhereInput[] No
NOT UserPerfumeWishlistWhereInput | UserPerfumeWishlistWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
isPublic BoolFilter | Boolean No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No

UserPerfumeWishlistOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isPublic SortOrder No
perfume PerfumeOrderByWithRelationInput No
user UserOrderByWithRelationInput No

UserPerfumeWishlistWhereUniqueInput

Name Type Nullable
id String No
AND UserPerfumeWishlistWhereInput | UserPerfumeWishlistWhereInput[] No
OR UserPerfumeWishlistWhereInput[] No
NOT UserPerfumeWishlistWhereInput | UserPerfumeWishlistWhereInput[] No
userId StringFilter | String No
perfumeId StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
isPublic BoolFilter | Boolean No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No

UserPerfumeWishlistOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isPublic SortOrder No
_count UserPerfumeWishlistCountOrderByAggregateInput No
_max UserPerfumeWishlistMaxOrderByAggregateInput No
_min UserPerfumeWishlistMinOrderByAggregateInput No


UserPerfumeCommentWhereInput

Name Type Nullable
AND UserPerfumeCommentWhereInput | UserPerfumeCommentWhereInput[] No
OR UserPerfumeCommentWhereInput[] No
NOT UserPerfumeCommentWhereInput | UserPerfumeCommentWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
userPerfumeId StringFilter | String No
comment StringFilter | String No
isPublic BoolFilter | Boolean No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No
userPerfume UserPerfumeScalarRelationFilter | UserPerfumeWhereInput No

UserPerfumeCommentOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
userPerfumeId SortOrder No
comment SortOrder No
isPublic SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
perfume PerfumeOrderByWithRelationInput No
user UserOrderByWithRelationInput No
userPerfume UserPerfumeOrderByWithRelationInput No

UserPerfumeCommentWhereUniqueInput

Name Type Nullable
id String No
AND UserPerfumeCommentWhereInput | UserPerfumeCommentWhereInput[] No
OR UserPerfumeCommentWhereInput[] No
NOT UserPerfumeCommentWhereInput | UserPerfumeCommentWhereInput[] No
userId StringFilter | String No
perfumeId StringFilter | String No
userPerfumeId StringFilter | String No
comment StringFilter | String No
isPublic BoolFilter | Boolean No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No
userPerfume UserPerfumeScalarRelationFilter | UserPerfumeWhereInput No

UserPerfumeCommentOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
userPerfumeId SortOrder No
comment SortOrder No
isPublic SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count UserPerfumeCommentCountOrderByAggregateInput No
_max UserPerfumeCommentMaxOrderByAggregateInput No
_min UserPerfumeCommentMinOrderByAggregateInput No


PerfumeNotesWhereInput

Name Type Nullable
AND PerfumeNotesWhereInput | PerfumeNotesWhereInput[] No
OR PerfumeNotesWhereInput[] No
NOT PerfumeNotesWhereInput | PerfumeNotesWhereInput[] No
id StringFilter | String No
name StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
perfumeOpenId StringNullableFilter | String | Null Yes
perfumeHeartId StringNullableFilter | String | Null Yes
perfumeCloseId StringNullableFilter | String | Null Yes
perfumeNoteRelations PerfumeNoteRelationListRelationFilter No

PerfumeNotesOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
perfumeOpenId SortOrder | SortOrderInput No
perfumeHeartId SortOrder | SortOrderInput No
perfumeCloseId SortOrder | SortOrderInput No
perfumeNoteRelations PerfumeNoteRelationOrderByRelationAggregateInput No

PerfumeNotesWhereUniqueInput

Name Type Nullable
id String No
name String No
AND PerfumeNotesWhereInput | PerfumeNotesWhereInput[] No
OR PerfumeNotesWhereInput[] No
NOT PerfumeNotesWhereInput | PerfumeNotesWhereInput[] No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
perfumeOpenId StringNullableFilter | String | Null Yes
perfumeHeartId StringNullableFilter | String | Null Yes
perfumeCloseId StringNullableFilter | String | Null Yes
perfumeNoteRelations PerfumeNoteRelationListRelationFilter No

PerfumeNotesOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
perfumeOpenId SortOrder | SortOrderInput No
perfumeHeartId SortOrder | SortOrderInput No
perfumeCloseId SortOrder | SortOrderInput No
_count PerfumeNotesCountOrderByAggregateInput No
_max PerfumeNotesMaxOrderByAggregateInput No
_min PerfumeNotesMinOrderByAggregateInput No



PerfumeNoteRelationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
perfumeId SortOrder No
noteId SortOrder No
noteType SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
perfume PerfumeOrderByWithRelationInput No
note PerfumeNotesOrderByWithRelationInput No


PerfumeNoteRelationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
perfumeId SortOrder No
noteId SortOrder No
noteType SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count PerfumeNoteRelationCountOrderByAggregateInput No
_max PerfumeNoteRelationMaxOrderByAggregateInput No
_min PerfumeNoteRelationMinOrderByAggregateInput No


WishlistNotificationWhereInput

Name Type Nullable
AND WishlistNotificationWhereInput | WishlistNotificationWhereInput[] No
OR WishlistNotificationWhereInput[] No
NOT WishlistNotificationWhereInput | WishlistNotificationWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
notifiedAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No

WishlistNotificationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
notifiedAt SortOrder No
updatedAt SortOrder No
perfume PerfumeOrderByWithRelationInput No
user UserOrderByWithRelationInput No

WishlistNotificationWhereUniqueInput

Name Type Nullable
id String No
userId_perfumeId WishlistNotificationUserIdPerfumeIdCompoundUniqueInput No
AND WishlistNotificationWhereInput | WishlistNotificationWhereInput[] No
OR WishlistNotificationWhereInput[] No
NOT WishlistNotificationWhereInput | WishlistNotificationWhereInput[] No
userId StringFilter | String No
perfumeId StringFilter | String No
notifiedAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
user UserScalarRelationFilter | UserWhereInput No

WishlistNotificationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
notifiedAt SortOrder No
updatedAt SortOrder No
_count WishlistNotificationCountOrderByAggregateInput No
_max WishlistNotificationMaxOrderByAggregateInput No
_min WishlistNotificationMinOrderByAggregateInput No


TraderFeedbackWhereInput

Name Type Nullable
AND TraderFeedbackWhereInput | TraderFeedbackWhereInput[] No
OR TraderFeedbackWhereInput[] No
NOT TraderFeedbackWhereInput | TraderFeedbackWhereInput[] No
id StringFilter | String No
traderId StringFilter | String No
reviewerId StringFilter | String No
rating IntFilter | Int No
comment StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
trader UserScalarRelationFilter | UserWhereInput No
reviewer UserScalarRelationFilter | UserWhereInput No

TraderFeedbackOrderByWithRelationInput

Name Type Nullable
id SortOrder No
traderId SortOrder No
reviewerId SortOrder No
rating SortOrder No
comment SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
trader UserOrderByWithRelationInput No
reviewer UserOrderByWithRelationInput No

TraderFeedbackWhereUniqueInput

Name Type Nullable
id String No
traderId_reviewerId TraderFeedbackTraderIdReviewerIdCompoundUniqueInput No
AND TraderFeedbackWhereInput | TraderFeedbackWhereInput[] No
OR TraderFeedbackWhereInput[] No
NOT TraderFeedbackWhereInput | TraderFeedbackWhereInput[] No
traderId StringFilter | String No
reviewerId StringFilter | String No
rating IntFilter | Int No
comment StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
trader UserScalarRelationFilter | UserWhereInput No
reviewer UserScalarRelationFilter | UserWhereInput No

TraderFeedbackOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
traderId SortOrder No
reviewerId SortOrder No
rating SortOrder No
comment SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
_count TraderFeedbackCountOrderByAggregateInput No
_avg TraderFeedbackAvgOrderByAggregateInput No
_max TraderFeedbackMaxOrderByAggregateInput No
_min TraderFeedbackMinOrderByAggregateInput No
_sum TraderFeedbackSumOrderByAggregateInput No


SecurityAuditLogWhereInput

Name Type Nullable
AND SecurityAuditLogWhereInput | SecurityAuditLogWhereInput[] No
OR SecurityAuditLogWhereInput[] No
NOT SecurityAuditLogWhereInput | SecurityAuditLogWhereInput[] No
id StringFilter | String No
userId StringNullableFilter | String | Null Yes
action EnumSecurityAuditActionFilter | SecurityAuditAction No
severity EnumSecurityAuditSeverityFilter | SecurityAuditSeverity No
resource StringNullableFilter | String | Null Yes
resourceId StringNullableFilter | String | Null Yes
ipAddress StringNullableFilter | String | Null Yes
userAgent StringNullableFilter | String | Null Yes
details JsonNullableFilter No
metadata JsonNullableFilter No
createdAt DateTimeFilter | DateTime No
User UserNullableScalarRelationFilter | UserWhereInput | Null Yes

SecurityAuditLogOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder | SortOrderInput No
action SortOrder No
severity SortOrder No
resource SortOrder | SortOrderInput No
resourceId SortOrder | SortOrderInput No
ipAddress SortOrder | SortOrderInput No
userAgent SortOrder | SortOrderInput No
details SortOrder | SortOrderInput No
metadata SortOrder | SortOrderInput No
createdAt SortOrder No
User UserOrderByWithRelationInput No

SecurityAuditLogWhereUniqueInput

Name Type Nullable
id String No
AND SecurityAuditLogWhereInput | SecurityAuditLogWhereInput[] No
OR SecurityAuditLogWhereInput[] No
NOT SecurityAuditLogWhereInput | SecurityAuditLogWhereInput[] No
userId StringNullableFilter | String | Null Yes
action EnumSecurityAuditActionFilter | SecurityAuditAction No
severity EnumSecurityAuditSeverityFilter | SecurityAuditSeverity No
resource StringNullableFilter | String | Null Yes
resourceId StringNullableFilter | String | Null Yes
ipAddress StringNullableFilter | String | Null Yes
userAgent StringNullableFilter | String | Null Yes
details JsonNullableFilter No
metadata JsonNullableFilter No
createdAt DateTimeFilter | DateTime No
User UserNullableScalarRelationFilter | UserWhereInput | Null Yes

SecurityAuditLogOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder | SortOrderInput No
action SortOrder No
severity SortOrder No
resource SortOrder | SortOrderInput No
resourceId SortOrder | SortOrderInput No
ipAddress SortOrder | SortOrderInput No
userAgent SortOrder | SortOrderInput No
details SortOrder | SortOrderInput No
metadata SortOrder | SortOrderInput No
createdAt SortOrder No
_count SecurityAuditLogCountOrderByAggregateInput No
_max SecurityAuditLogMaxOrderByAggregateInput No
_min SecurityAuditLogMinOrderByAggregateInput No

SecurityAuditLogScalarWhereWithAggregatesInput

Name Type Nullable
AND SecurityAuditLogScalarWhereWithAggregatesInput | SecurityAuditLogScalarWhereWithAggregatesInput[] No
OR SecurityAuditLogScalarWhereWithAggregatesInput[] No
NOT SecurityAuditLogScalarWhereWithAggregatesInput | SecurityAuditLogScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
userId StringNullableWithAggregatesFilter | String | Null Yes
action EnumSecurityAuditActionWithAggregatesFilter | SecurityAuditAction No
severity EnumSecurityAuditSeverityWithAggregatesFilter | SecurityAuditSeverity No
resource StringNullableWithAggregatesFilter | String | Null Yes
resourceId StringNullableWithAggregatesFilter | String | Null Yes
ipAddress StringNullableWithAggregatesFilter | String | Null Yes
userAgent StringNullableWithAggregatesFilter | String | Null Yes
details JsonNullableWithAggregatesFilter No
metadata JsonNullableWithAggregatesFilter No
createdAt DateTimeWithAggregatesFilter | DateTime No

UserAlertWhereInput

Name Type Nullable
AND UserAlertWhereInput | UserAlertWhereInput[] No
OR UserAlertWhereInput[] No
NOT UserAlertWhereInput | UserAlertWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
alertType EnumAlertTypeFilter | AlertType No
title StringFilter | String No
message StringFilter | String No
isRead BoolFilter | Boolean No
isDismissed BoolFilter | Boolean No
metadata JsonNullableFilter No
createdAt DateTimeFilter | DateTime No
readAt DateTimeNullableFilter | DateTime | Null Yes
dismissedAt DateTimeNullableFilter | DateTime | Null Yes
Perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
User UserScalarRelationFilter | UserWhereInput No

UserAlertOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
alertType SortOrder No
title SortOrder No
message SortOrder No
isRead SortOrder No
isDismissed SortOrder No
metadata SortOrder | SortOrderInput No
createdAt SortOrder No
readAt SortOrder | SortOrderInput No
dismissedAt SortOrder | SortOrderInput No
Perfume PerfumeOrderByWithRelationInput No
User UserOrderByWithRelationInput No

UserAlertWhereUniqueInput

Name Type Nullable
id String No
AND UserAlertWhereInput | UserAlertWhereInput[] No
OR UserAlertWhereInput[] No
NOT UserAlertWhereInput | UserAlertWhereInput[] No
userId StringFilter | String No
perfumeId StringFilter | String No
alertType EnumAlertTypeFilter | AlertType No
title StringFilter | String No
message StringFilter | String No
isRead BoolFilter | Boolean No
isDismissed BoolFilter | Boolean No
metadata JsonNullableFilter No
createdAt DateTimeFilter | DateTime No
readAt DateTimeNullableFilter | DateTime | Null Yes
dismissedAt DateTimeNullableFilter | DateTime | Null Yes
Perfume PerfumeScalarRelationFilter | PerfumeWhereInput No
User UserScalarRelationFilter | UserWhereInput No

UserAlertOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
alertType SortOrder No
title SortOrder No
message SortOrder No
isRead SortOrder No
isDismissed SortOrder No
metadata SortOrder | SortOrderInput No
createdAt SortOrder No
readAt SortOrder | SortOrderInput No
dismissedAt SortOrder | SortOrderInput No
_count UserAlertCountOrderByAggregateInput No
_max UserAlertMaxOrderByAggregateInput No
_min UserAlertMinOrderByAggregateInput No

UserAlertScalarWhereWithAggregatesInput

Name Type Nullable
AND UserAlertScalarWhereWithAggregatesInput | UserAlertScalarWhereWithAggregatesInput[] No
OR UserAlertScalarWhereWithAggregatesInput[] No
NOT UserAlertScalarWhereWithAggregatesInput | UserAlertScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
userId StringWithAggregatesFilter | String No
perfumeId StringWithAggregatesFilter | String No
alertType EnumAlertTypeWithAggregatesFilter | AlertType No
title StringWithAggregatesFilter | String No
message StringWithAggregatesFilter | String No
isRead BoolWithAggregatesFilter | Boolean No
isDismissed BoolWithAggregatesFilter | Boolean No
metadata JsonNullableWithAggregatesFilter No
createdAt DateTimeWithAggregatesFilter | DateTime No
readAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
dismissedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes

UserAlertPreferencesWhereInput

Name Type Nullable
AND UserAlertPreferencesWhereInput | UserAlertPreferencesWhereInput[] No
OR UserAlertPreferencesWhereInput[] No
NOT UserAlertPreferencesWhereInput | UserAlertPreferencesWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
wishlistAlertsEnabled BoolFilter | Boolean No
decantAlertsEnabled BoolFilter | Boolean No
emailWishlistAlerts BoolFilter | Boolean No
emailDecantAlerts BoolFilter | Boolean No
maxAlerts IntFilter | Int No
User UserScalarRelationFilter | UserWhereInput No

UserAlertPreferencesOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
wishlistAlertsEnabled SortOrder No
decantAlertsEnabled SortOrder No
emailWishlistAlerts SortOrder No
emailDecantAlerts SortOrder No
maxAlerts SortOrder No
User UserOrderByWithRelationInput No

UserAlertPreferencesWhereUniqueInput

Name Type Nullable
id String No
userId String No
AND UserAlertPreferencesWhereInput | UserAlertPreferencesWhereInput[] No
OR UserAlertPreferencesWhereInput[] No
NOT UserAlertPreferencesWhereInput | UserAlertPreferencesWhereInput[] No
wishlistAlertsEnabled BoolFilter | Boolean No
decantAlertsEnabled BoolFilter | Boolean No
emailWishlistAlerts BoolFilter | Boolean No
emailDecantAlerts BoolFilter | Boolean No
maxAlerts IntFilter | Int No
User UserScalarRelationFilter | UserWhereInput No

UserAlertPreferencesOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
wishlistAlertsEnabled SortOrder No
decantAlertsEnabled SortOrder No
emailWishlistAlerts SortOrder No
emailDecantAlerts SortOrder No
maxAlerts SortOrder No
_count UserAlertPreferencesCountOrderByAggregateInput No
_avg UserAlertPreferencesAvgOrderByAggregateInput No
_max UserAlertPreferencesMaxOrderByAggregateInput No
_min UserAlertPreferencesMinOrderByAggregateInput No
_sum UserAlertPreferencesSumOrderByAggregateInput No

UserAlertPreferencesScalarWhereWithAggregatesInput

Name Type Nullable
AND UserAlertPreferencesScalarWhereWithAggregatesInput | UserAlertPreferencesScalarWhereWithAggregatesInput[] No
OR UserAlertPreferencesScalarWhereWithAggregatesInput[] No
NOT UserAlertPreferencesScalarWhereWithAggregatesInput | UserAlertPreferencesScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
userId StringWithAggregatesFilter | String No
wishlistAlertsEnabled BoolWithAggregatesFilter | Boolean No
decantAlertsEnabled BoolWithAggregatesFilter | Boolean No
emailWishlistAlerts BoolWithAggregatesFilter | Boolean No
emailDecantAlerts BoolWithAggregatesFilter | Boolean No
maxAlerts IntWithAggregatesFilter | Int No

PendingSubmissionWhereInput

Name Type Nullable
AND PendingSubmissionWhereInput | PendingSubmissionWhereInput[] No
OR PendingSubmissionWhereInput[] No
NOT PendingSubmissionWhereInput | PendingSubmissionWhereInput[] No
id StringFilter | String No
submissionType EnumPendingSubmissionTypeFilter | PendingSubmissionType No
submittedBy StringNullableFilter | String | Null Yes
status EnumPendingSubmissionStatusFilter | PendingSubmissionStatus No
submissionData JsonFilter No
adminNotes StringNullableFilter | String | Null Yes
reviewedBy StringNullableFilter | String | Null Yes
reviewedAt DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
submittedByUser UserNullableScalarRelationFilter | UserWhereInput | Null Yes
reviewedByUser UserNullableScalarRelationFilter | UserWhereInput | Null Yes

PendingSubmissionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
submissionType SortOrder No
submittedBy SortOrder | SortOrderInput No
status SortOrder No
submissionData SortOrder No
adminNotes SortOrder | SortOrderInput No
reviewedBy SortOrder | SortOrderInput No
reviewedAt SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
submittedByUser UserOrderByWithRelationInput No
reviewedByUser UserOrderByWithRelationInput No

PendingSubmissionWhereUniqueInput

Name Type Nullable
id String No
AND PendingSubmissionWhereInput | PendingSubmissionWhereInput[] No
OR PendingSubmissionWhereInput[] No
NOT PendingSubmissionWhereInput | PendingSubmissionWhereInput[] No
submissionType EnumPendingSubmissionTypeFilter | PendingSubmissionType No
submittedBy StringNullableFilter | String | Null Yes
status EnumPendingSubmissionStatusFilter | PendingSubmissionStatus No
submissionData JsonFilter No
adminNotes StringNullableFilter | String | Null Yes
reviewedBy StringNullableFilter | String | Null Yes
reviewedAt DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
submittedByUser UserNullableScalarRelationFilter | UserWhereInput | Null Yes
reviewedByUser UserNullableScalarRelationFilter | UserWhereInput | Null Yes

PendingSubmissionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
submissionType SortOrder No
submittedBy SortOrder | SortOrderInput No
status SortOrder No
submissionData SortOrder No
adminNotes SortOrder | SortOrderInput No
reviewedBy SortOrder | SortOrderInput No
reviewedAt SortOrder | SortOrderInput No
createdAt SortOrder No
updatedAt SortOrder No
_count PendingSubmissionCountOrderByAggregateInput No
_max PendingSubmissionMaxOrderByAggregateInput No
_min PendingSubmissionMinOrderByAggregateInput No

PendingSubmissionScalarWhereWithAggregatesInput

Name Type Nullable
AND PendingSubmissionScalarWhereWithAggregatesInput | PendingSubmissionScalarWhereWithAggregatesInput[] No
OR PendingSubmissionScalarWhereWithAggregatesInput[] No
NOT PendingSubmissionScalarWhereWithAggregatesInput | PendingSubmissionScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
submissionType EnumPendingSubmissionTypeWithAggregatesFilter | PendingSubmissionType No
submittedBy StringNullableWithAggregatesFilter | String | Null Yes
status EnumPendingSubmissionStatusWithAggregatesFilter | PendingSubmissionStatus No
submissionData JsonWithAggregatesFilter No
adminNotes StringNullableWithAggregatesFilter | String | Null Yes
reviewedBy StringNullableWithAggregatesFilter | String | Null Yes
reviewedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No

TraderContactMessageWhereInput

Name Type Nullable
AND TraderContactMessageWhereInput | TraderContactMessageWhereInput[] No
OR TraderContactMessageWhereInput[] No
NOT TraderContactMessageWhereInput | TraderContactMessageWhereInput[] No
id StringFilter | String No
senderId StringFilter | String No
recipientId StringFilter | String No
subject StringNullableFilter | String | Null Yes
message StringFilter | String No
read BoolFilter | Boolean No
createdAt DateTimeFilter | DateTime No
sender UserScalarRelationFilter | UserWhereInput No
recipient UserScalarRelationFilter | UserWhereInput No

TraderContactMessageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
senderId SortOrder No
recipientId SortOrder No
subject SortOrder | SortOrderInput No
message SortOrder No
read SortOrder No
createdAt SortOrder No
sender UserOrderByWithRelationInput No
recipient UserOrderByWithRelationInput No

TraderContactMessageWhereUniqueInput

Name Type Nullable
id String No
AND TraderContactMessageWhereInput | TraderContactMessageWhereInput[] No
OR TraderContactMessageWhereInput[] No
NOT TraderContactMessageWhereInput | TraderContactMessageWhereInput[] No
senderId StringFilter | String No
recipientId StringFilter | String No
subject StringNullableFilter | String | Null Yes
message StringFilter | String No
read BoolFilter | Boolean No
createdAt DateTimeFilter | DateTime No
sender UserScalarRelationFilter | UserWhereInput No
recipient UserScalarRelationFilter | UserWhereInput No

TraderContactMessageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
senderId SortOrder No
recipientId SortOrder No
subject SortOrder | SortOrderInput No
message SortOrder No
read SortOrder No
createdAt SortOrder No
_count TraderContactMessageCountOrderByAggregateInput No
_max TraderContactMessageMaxOrderByAggregateInput No
_min TraderContactMessageMinOrderByAggregateInput No


MigrationStateWhereInput

Name Type Nullable
AND MigrationStateWhereInput | MigrationStateWhereInput[] No
OR MigrationStateWhereInput[] No
NOT MigrationStateWhereInput | MigrationStateWhereInput[] No
id StringFilter | String No
tableName StringFilter | String No
lastMigratedAt DateTimeFilter | DateTime No
recordCount IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No

MigrationStateOrderByWithRelationInput

Name Type Nullable
id SortOrder No
tableName SortOrder No
lastMigratedAt SortOrder No
recordCount SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

MigrationStateWhereUniqueInput

Name Type Nullable
id String No
tableName String No
AND MigrationStateWhereInput | MigrationStateWhereInput[] No
OR MigrationStateWhereInput[] No
NOT MigrationStateWhereInput | MigrationStateWhereInput[] No
lastMigratedAt DateTimeFilter | DateTime No
recordCount IntFilter | Int No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No

MigrationStateOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
tableName SortOrder No
lastMigratedAt SortOrder No
recordCount SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count MigrationStateCountOrderByAggregateInput No
_avg MigrationStateAvgOrderByAggregateInput No
_max MigrationStateMaxOrderByAggregateInput No
_min MigrationStateMinOrderByAggregateInput No
_sum MigrationStateSumOrderByAggregateInput No


UserCreateInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

UserCreateManyInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No

UserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No

UserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No

PerfumeHouseCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
website String | Null Yes
country String | Null Yes
founded String | Null Yes
email String | Null Yes
phone String | Null Yes
address String | Null Yes
type HouseType No
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumes PerfumeCreateNestedManyWithoutPerfumeHouseInput No

PerfumeHouseUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
website String | Null Yes
country String | Null Yes
founded String | Null Yes
email String | Null Yes
phone String | Null Yes
address String | Null Yes
type HouseType No
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumes PerfumeUncheckedCreateNestedManyWithoutPerfumeHouseInput No

PerfumeHouseUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
founded String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
type HouseType | EnumHouseTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumes PerfumeUpdateManyWithoutPerfumeHouseNestedInput No

PerfumeHouseUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
founded String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
type HouseType | EnumHouseTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumes PerfumeUncheckedUpdateManyWithoutPerfumeHouseNestedInput No

PerfumeHouseCreateManyInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
website String | Null Yes
country String | Null Yes
founded String | Null Yes
email String | Null Yes
phone String | Null Yes
address String | Null Yes
type HouseType No
createdAt DateTime No
updatedAt DateTime No
slug String No

PerfumeHouseUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
founded String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
type HouseType | EnumHouseTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No

PerfumeHouseUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
founded String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
type HouseType | EnumHouseTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No

PerfumeCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeHouse PerfumeHouseCreateNestedOneWithoutPerfumesInput No
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeHouse PerfumeHouseUpdateOneWithoutPerfumesNestedInput No
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput No

PerfumeCreateManyInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No

PerfumeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No

PerfumeUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No

UserPerfumeCreateInput

Name Type Nullable
id String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No
perfume PerfumeCreateNestedOneWithoutUserPerfumeInput No
user UserCreateNestedOneWithoutUserPerfumeInput No
comments UserPerfumeCommentCreateNestedManyWithoutUserPerfumeInput No

UserPerfumeUncheckedCreateInput

Name Type Nullable
id String No
userId String No
perfumeId String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No
comments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserPerfumeInput No

UserPerfumeUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutUserPerfumeNestedInput No
user UserUpdateOneRequiredWithoutUserPerfumeNestedInput No
comments UserPerfumeCommentUpdateManyWithoutUserPerfumeNestedInput No

UserPerfumeUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No
comments UserPerfumeCommentUncheckedUpdateManyWithoutUserPerfumeNestedInput No

UserPerfumeCreateManyInput

Name Type Nullable
id String No
userId String No
perfumeId String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No

UserPerfumeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No

UserPerfumeUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No

UserPerfumeRatingCreateInput

Name Type Nullable
id String No
createdAt DateTime No
gender Int | Null Yes
longevity Int | Null Yes
overall Int | Null Yes
priceValue Int | Null Yes
sillage Int | Null Yes
updatedAt DateTime No
perfume PerfumeCreateNestedOneWithoutUserPerfumeRatingInput No
user UserCreateNestedOneWithoutUserPerfumeRatingInput No

UserPerfumeRatingUncheckedCreateInput

Name Type Nullable
id String No
userId String No
perfumeId String No
createdAt DateTime No
gender Int | Null Yes
longevity Int | Null Yes
overall Int | Null Yes
priceValue Int | Null Yes
sillage Int | Null Yes
updatedAt DateTime No

UserPerfumeRatingUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutUserPerfumeRatingNestedInput No
user UserUpdateOneRequiredWithoutUserPerfumeRatingNestedInput No

UserPerfumeRatingUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeRatingCreateManyInput

Name Type Nullable
id String No
userId String No
perfumeId String No
createdAt DateTime No
gender Int | Null Yes
longevity Int | Null Yes
overall Int | Null Yes
priceValue Int | Null Yes
sillage Int | Null Yes
updatedAt DateTime No

UserPerfumeRatingUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeRatingUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeReviewCreateInput

Name Type Nullable
id String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No
perfume PerfumeCreateNestedOneWithoutUserPerfumeReviewInput No
user UserCreateNestedOneWithoutUserPerfumeReviewInput No

UserPerfumeReviewUncheckedCreateInput

Name Type Nullable
id String No
userId String No
perfumeId String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No


UserPerfumeReviewUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
review String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isApproved Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeReviewCreateManyInput

Name Type Nullable
id String No
userId String No
perfumeId String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No

UserPerfumeReviewUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
review String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isApproved Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeReviewUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
review String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isApproved Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeWishlistCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No
perfume PerfumeCreateNestedOneWithoutUserPerfumeWishlistInput No
user UserCreateNestedOneWithoutUserPerfumeWishlistInput No

UserPerfumeWishlistUncheckedCreateInput

Name Type Nullable
id String No
userId String No
perfumeId String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No


UserPerfumeWishlistUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeWishlistCreateManyInput

Name Type Nullable
id String No
userId String No
perfumeId String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No

UserPerfumeWishlistUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeWishlistUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeCommentCreateInput

Name Type Nullable
id String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No
perfume PerfumeCreateNestedOneWithoutUserPerfumeCommentsInput No
user UserCreateNestedOneWithoutUserPerfumeCommentsInput No
userPerfume UserPerfumeCreateNestedOneWithoutCommentsInput No

UserPerfumeCommentUncheckedCreateInput

Name Type Nullable
id String No
userId String No
perfumeId String No
userPerfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No


UserPerfumeCommentUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
userPerfumeId String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeCommentCreateManyInput

Name Type Nullable
id String No
userId String No
perfumeId String No
userPerfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No

UserPerfumeCommentUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeCommentUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
userPerfumeId String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PerfumeNotesCreateInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
updatedAt DateTime No
perfumeOpenId String | Null Yes
perfumeHeartId String | Null Yes
perfumeCloseId String | Null Yes
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutNoteInput No

PerfumeNotesUncheckedCreateInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
updatedAt DateTime No
perfumeOpenId String | Null Yes
perfumeHeartId String | Null Yes
perfumeCloseId String | Null Yes
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutNoteInput No

PerfumeNotesUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfumeOpenId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHeartId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeCloseId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutNoteNestedInput No

PerfumeNotesUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfumeOpenId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHeartId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeCloseId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutNoteNestedInput No

PerfumeNotesCreateManyInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
updatedAt DateTime No
perfumeOpenId String | Null Yes
perfumeHeartId String | Null Yes
perfumeCloseId String | Null Yes

PerfumeNotesUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfumeOpenId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHeartId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeCloseId String | NullableStringFieldUpdateOperationsInput | Null Yes

PerfumeNotesUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfumeOpenId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHeartId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeCloseId String | NullableStringFieldUpdateOperationsInput | Null Yes

PerfumeNoteRelationCreateInput

Name Type Nullable
id String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No
perfume PerfumeCreateNestedOneWithoutPerfumeNoteRelationsInput No
note PerfumeNotesCreateNestedOneWithoutPerfumeNoteRelationsInput No

PerfumeNoteRelationUncheckedCreateInput

Name Type Nullable
id String No
perfumeId String No
noteId String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No


PerfumeNoteRelationUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
noteId String | StringFieldUpdateOperationsInput No
noteType PerfumeNoteType | EnumPerfumeNoteTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PerfumeNoteRelationCreateManyInput

Name Type Nullable
id String No
perfumeId String No
noteId String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No

PerfumeNoteRelationUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
noteType PerfumeNoteType | EnumPerfumeNoteTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PerfumeNoteRelationUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
noteId String | StringFieldUpdateOperationsInput No
noteType PerfumeNoteType | EnumPerfumeNoteTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

WishlistNotificationCreateInput

Name Type Nullable
id String No
notifiedAt DateTime No
updatedAt DateTime No
perfume PerfumeCreateNestedOneWithoutWishlistNotificationsInput No
user UserCreateNestedOneWithoutWishlistNotificationsInput No

WishlistNotificationUncheckedCreateInput

Name Type Nullable
id String No
userId String No
perfumeId String No
notifiedAt DateTime No
updatedAt DateTime No


WishlistNotificationUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
notifiedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

WishlistNotificationCreateManyInput

Name Type Nullable
id String No
userId String No
perfumeId String No
notifiedAt DateTime No
updatedAt DateTime No

WishlistNotificationUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
notifiedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

WishlistNotificationUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
notifiedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderFeedbackCreateInput

Name Type Nullable
id String No
rating Int No
comment String | Null Yes
createdAt DateTime No
updatedAt DateTime No
trader UserCreateNestedOneWithoutTraderFeedbackReceivedInput No
reviewer UserCreateNestedOneWithoutTraderFeedbackLeftInput No

TraderFeedbackUncheckedCreateInput

Name Type Nullable
id String No
traderId String No
reviewerId String No
rating Int No
comment String | Null Yes
createdAt DateTime No
updatedAt DateTime No


TraderFeedbackUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
traderId String | StringFieldUpdateOperationsInput No
reviewerId String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderFeedbackCreateManyInput

Name Type Nullable
id String No
traderId String No
reviewerId String No
rating Int No
comment String | Null Yes
createdAt DateTime No
updatedAt DateTime No

TraderFeedbackUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderFeedbackUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
traderId String | StringFieldUpdateOperationsInput No
reviewerId String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

SecurityAuditLogCreateInput

Name Type Nullable
id String No
action SecurityAuditAction No
severity SecurityAuditSeverity No
resource String | Null Yes
resourceId String | Null Yes
ipAddress String | Null Yes
userAgent String | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
User UserCreateNestedOneWithoutSecurityAuditLogInput No

SecurityAuditLogUncheckedCreateInput

Name Type Nullable
id String No
userId String | Null Yes
action SecurityAuditAction No
severity SecurityAuditSeverity No
resource String | Null Yes
resourceId String | Null Yes
ipAddress String | Null Yes
userAgent String | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No


SecurityAuditLogUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | NullableStringFieldUpdateOperationsInput | Null Yes
action SecurityAuditAction | EnumSecurityAuditActionFieldUpdateOperationsInput No
severity SecurityAuditSeverity | EnumSecurityAuditSeverityFieldUpdateOperationsInput No
resource String | NullableStringFieldUpdateOperationsInput | Null Yes
resourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
ipAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
userAgent String | NullableStringFieldUpdateOperationsInput | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

SecurityAuditLogCreateManyInput

Name Type Nullable
id String No
userId String | Null Yes
action SecurityAuditAction No
severity SecurityAuditSeverity No
resource String | Null Yes
resourceId String | Null Yes
ipAddress String | Null Yes
userAgent String | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No

SecurityAuditLogUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
action SecurityAuditAction | EnumSecurityAuditActionFieldUpdateOperationsInput No
severity SecurityAuditSeverity | EnumSecurityAuditSeverityFieldUpdateOperationsInput No
resource String | NullableStringFieldUpdateOperationsInput | Null Yes
resourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
ipAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
userAgent String | NullableStringFieldUpdateOperationsInput | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

SecurityAuditLogUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | NullableStringFieldUpdateOperationsInput | Null Yes
action SecurityAuditAction | EnumSecurityAuditActionFieldUpdateOperationsInput No
severity SecurityAuditSeverity | EnumSecurityAuditSeverityFieldUpdateOperationsInput No
resource String | NullableStringFieldUpdateOperationsInput | Null Yes
resourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
ipAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
userAgent String | NullableStringFieldUpdateOperationsInput | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

UserAlertCreateInput

Name Type Nullable
id String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
readAt DateTime | Null Yes
dismissedAt DateTime | Null Yes
Perfume PerfumeCreateNestedOneWithoutUserAlertInput No
User UserCreateNestedOneWithoutUserAlertInput No

UserAlertUncheckedCreateInput

Name Type Nullable
id String No
userId String No
perfumeId String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
readAt DateTime | Null Yes
dismissedAt DateTime | Null Yes


UserAlertUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
alertType AlertType | EnumAlertTypeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
isRead Boolean | BoolFieldUpdateOperationsInput No
isDismissed Boolean | BoolFieldUpdateOperationsInput No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
readAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dismissedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

UserAlertCreateManyInput

Name Type Nullable
id String No
userId String No
perfumeId String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
readAt DateTime | Null Yes
dismissedAt DateTime | Null Yes

UserAlertUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
alertType AlertType | EnumAlertTypeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
isRead Boolean | BoolFieldUpdateOperationsInput No
isDismissed Boolean | BoolFieldUpdateOperationsInput No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
readAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dismissedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

UserAlertUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
alertType AlertType | EnumAlertTypeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
isRead Boolean | BoolFieldUpdateOperationsInput No
isDismissed Boolean | BoolFieldUpdateOperationsInput No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
readAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dismissedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

UserAlertPreferencesCreateInput

Name Type Nullable
id String No
wishlistAlertsEnabled Boolean No
decantAlertsEnabled Boolean No
emailWishlistAlerts Boolean No
emailDecantAlerts Boolean No
maxAlerts Int No
User UserCreateNestedOneWithoutAlertPreferencesInput No

UserAlertPreferencesUncheckedCreateInput

Name Type Nullable
id String No
userId String No
wishlistAlertsEnabled Boolean No
decantAlertsEnabled Boolean No
emailWishlistAlerts Boolean No
emailDecantAlerts Boolean No
maxAlerts Int No

UserAlertPreferencesUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
wishlistAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
decantAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
emailWishlistAlerts Boolean | BoolFieldUpdateOperationsInput No
emailDecantAlerts Boolean | BoolFieldUpdateOperationsInput No
maxAlerts Int | IntFieldUpdateOperationsInput No
User UserUpdateOneRequiredWithoutAlertPreferencesNestedInput No

UserAlertPreferencesUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
wishlistAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
decantAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
emailWishlistAlerts Boolean | BoolFieldUpdateOperationsInput No
emailDecantAlerts Boolean | BoolFieldUpdateOperationsInput No
maxAlerts Int | IntFieldUpdateOperationsInput No

UserAlertPreferencesCreateManyInput

Name Type Nullable
id String No
userId String No
wishlistAlertsEnabled Boolean No
decantAlertsEnabled Boolean No
emailWishlistAlerts Boolean No
emailDecantAlerts Boolean No
maxAlerts Int No

UserAlertPreferencesUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
wishlistAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
decantAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
emailWishlistAlerts Boolean | BoolFieldUpdateOperationsInput No
emailDecantAlerts Boolean | BoolFieldUpdateOperationsInput No
maxAlerts Int | IntFieldUpdateOperationsInput No

UserAlertPreferencesUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
wishlistAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
decantAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
emailWishlistAlerts Boolean | BoolFieldUpdateOperationsInput No
emailDecantAlerts Boolean | BoolFieldUpdateOperationsInput No
maxAlerts Int | IntFieldUpdateOperationsInput No

PendingSubmissionCreateInput

Name Type Nullable
id String No
submissionType PendingSubmissionType No
status PendingSubmissionStatus No
submissionData JsonNullValueInput | Json No
adminNotes String | Null Yes
reviewedAt DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
submittedByUser UserCreateNestedOneWithoutPendingSubmissionsInput No
reviewedByUser UserCreateNestedOneWithoutReviewedSubmissionsInput No

PendingSubmissionUncheckedCreateInput

Name Type Nullable
id String No
submissionType PendingSubmissionType No
submittedBy String | Null Yes
status PendingSubmissionStatus No
submissionData JsonNullValueInput | Json No
adminNotes String | Null Yes
reviewedBy String | Null Yes
reviewedAt DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No


PendingSubmissionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
submissionType PendingSubmissionType | EnumPendingSubmissionTypeFieldUpdateOperationsInput No
submittedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
status PendingSubmissionStatus | EnumPendingSubmissionStatusFieldUpdateOperationsInput No
submissionData JsonNullValueInput | Json No
adminNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PendingSubmissionCreateManyInput

Name Type Nullable
id String No
submissionType PendingSubmissionType No
submittedBy String | Null Yes
status PendingSubmissionStatus No
submissionData JsonNullValueInput | Json No
adminNotes String | Null Yes
reviewedBy String | Null Yes
reviewedAt DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No

PendingSubmissionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
submissionType PendingSubmissionType | EnumPendingSubmissionTypeFieldUpdateOperationsInput No
status PendingSubmissionStatus | EnumPendingSubmissionStatusFieldUpdateOperationsInput No
submissionData JsonNullValueInput | Json No
adminNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PendingSubmissionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
submissionType PendingSubmissionType | EnumPendingSubmissionTypeFieldUpdateOperationsInput No
submittedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
status PendingSubmissionStatus | EnumPendingSubmissionStatusFieldUpdateOperationsInput No
submissionData JsonNullValueInput | Json No
adminNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderContactMessageCreateInput

Name Type Nullable
id String No
subject String | Null Yes
message String No
read Boolean No
createdAt DateTime No
sender UserCreateNestedOneWithoutTraderContactMessagesSentInput No
recipient UserCreateNestedOneWithoutTraderContactMessagesReceivedInput No

TraderContactMessageUncheckedCreateInput

Name Type Nullable
id String No
senderId String No
recipientId String No
subject String | Null Yes
message String No
read Boolean No
createdAt DateTime No


TraderContactMessageUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
senderId String | StringFieldUpdateOperationsInput No
recipientId String | StringFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
message String | StringFieldUpdateOperationsInput No
read Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderContactMessageCreateManyInput

Name Type Nullable
id String No
senderId String No
recipientId String No
subject String | Null Yes
message String No
read Boolean No
createdAt DateTime No

TraderContactMessageUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
message String | StringFieldUpdateOperationsInput No
read Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderContactMessageUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
senderId String | StringFieldUpdateOperationsInput No
recipientId String | StringFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
message String | StringFieldUpdateOperationsInput No
read Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

MigrationStateCreateInput

Name Type Nullable
id String No
tableName String No
lastMigratedAt DateTime No
recordCount Int No
createdAt DateTime No
updatedAt DateTime No

MigrationStateUncheckedCreateInput

Name Type Nullable
id String No
tableName String No
lastMigratedAt DateTime No
recordCount Int No
createdAt DateTime No
updatedAt DateTime No

MigrationStateUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tableName String | StringFieldUpdateOperationsInput No
lastMigratedAt DateTime | DateTimeFieldUpdateOperationsInput No
recordCount Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

MigrationStateUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tableName String | StringFieldUpdateOperationsInput No
lastMigratedAt DateTime | DateTimeFieldUpdateOperationsInput No
recordCount Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

MigrationStateCreateManyInput

Name Type Nullable
id String No
tableName String No
lastMigratedAt DateTime No
recordCount Int No
createdAt DateTime No
updatedAt DateTime No

MigrationStateUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tableName String | StringFieldUpdateOperationsInput No
lastMigratedAt DateTime | DateTimeFieldUpdateOperationsInput No
recordCount Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

MigrationStateUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tableName String | StringFieldUpdateOperationsInput No
lastMigratedAt DateTime | DateTimeFieldUpdateOperationsInput No
recordCount Int | IntFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

StringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringFilter No

StringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

DateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No


SecurityAuditLogListRelationFilter

Name Type Nullable
every SecurityAuditLogWhereInput No
some SecurityAuditLogWhereInput No
none SecurityAuditLogWhereInput No

UserAlertListRelationFilter

Name Type Nullable
every UserAlertWhereInput No
some UserAlertWhereInput No
none UserAlertWhereInput No

UserAlertPreferencesNullableScalarRelationFilter

Name Type Nullable
is UserAlertPreferencesWhereInput | Null Yes
isNot UserAlertPreferencesWhereInput | Null Yes

UserPerfumeListRelationFilter

Name Type Nullable
every UserPerfumeWhereInput No
some UserPerfumeWhereInput No
none UserPerfumeWhereInput No

UserPerfumeCommentListRelationFilter

Name Type Nullable
every UserPerfumeCommentWhereInput No
some UserPerfumeCommentWhereInput No
none UserPerfumeCommentWhereInput No

UserPerfumeRatingListRelationFilter

Name Type Nullable
every UserPerfumeRatingWhereInput No
some UserPerfumeRatingWhereInput No
none UserPerfumeRatingWhereInput No

UserPerfumeReviewListRelationFilter

Name Type Nullable
every UserPerfumeReviewWhereInput No
some UserPerfumeReviewWhereInput No
none UserPerfumeReviewWhereInput No

UserPerfumeWishlistListRelationFilter

Name Type Nullable
every UserPerfumeWishlistWhereInput No
some UserPerfumeWishlistWhereInput No
none UserPerfumeWishlistWhereInput No

WishlistNotificationListRelationFilter

Name Type Nullable
every WishlistNotificationWhereInput No
some WishlistNotificationWhereInput No
none WishlistNotificationWhereInput No

TraderFeedbackListRelationFilter

Name Type Nullable
every TraderFeedbackWhereInput No
some TraderFeedbackWhereInput No
none TraderFeedbackWhereInput No

PendingSubmissionListRelationFilter

Name Type Nullable
every PendingSubmissionWhereInput No
some PendingSubmissionWhereInput No
none PendingSubmissionWhereInput No

TraderContactMessageListRelationFilter

Name Type Nullable
every TraderContactMessageWhereInput No
some TraderContactMessageWhereInput No
none TraderContactMessageWhereInput No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

SecurityAuditLogOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserAlertOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserPerfumeOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserPerfumeCommentOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserPerfumeRatingOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserPerfumeReviewOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserPerfumeWishlistOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

WishlistNotificationOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TraderFeedbackOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PendingSubmissionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TraderContactMessageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
email SortOrder No
password SortOrder No
firstName SortOrder No
lastName SortOrder No
username SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
role SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
email SortOrder No
password SortOrder No
firstName SortOrder No
lastName SortOrder No
username SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
role SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
email SortOrder No
password SortOrder No
firstName SortOrder No
lastName SortOrder No
username SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
role SortOrder No

StringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No



PerfumeListRelationFilter

Name Type Nullable
every PerfumeWhereInput No
some PerfumeWhereInput No
none PerfumeWhereInput No

PerfumeOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PerfumeHouseCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
image SortOrder No
website SortOrder No
country SortOrder No
founded SortOrder No
email SortOrder No
phone SortOrder No
address SortOrder No
type SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No

PerfumeHouseMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
image SortOrder No
website SortOrder No
country SortOrder No
founded SortOrder No
email SortOrder No
phone SortOrder No
address SortOrder No
type SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No

PerfumeHouseMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
image SortOrder No
website SortOrder No
country SortOrder No
founded SortOrder No
email SortOrder No
phone SortOrder No
address SortOrder No
type SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No


PerfumeHouseNullableScalarRelationFilter

Name Type Nullable
is PerfumeHouseWhereInput | Null Yes
isNot PerfumeHouseWhereInput | Null Yes

PerfumeNoteRelationListRelationFilter

Name Type Nullable
every PerfumeNoteRelationWhereInput No
some PerfumeNoteRelationWhereInput No
none PerfumeNoteRelationWhereInput No

PerfumeNoteRelationOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PerfumeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
image SortOrder No
perfumeHouseId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No

PerfumeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
image SortOrder No
perfumeHouseId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No

PerfumeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
image SortOrder No
perfumeHouseId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
slug SortOrder No


BoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No


PerfumeScalarRelationFilter

Name Type Nullable
is PerfumeWhereInput No
isNot PerfumeWhereInput No

UserScalarRelationFilter

Name Type Nullable
is UserWhereInput No
isNot UserWhereInput No

UserPerfumeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
amount SortOrder No
available SortOrder No
price SortOrder No
placeOfPurchase SortOrder No
tradePrice SortOrder No
tradePreference SortOrder No
tradeOnly SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
type SortOrder No

UserPerfumeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
amount SortOrder No
available SortOrder No
price SortOrder No
placeOfPurchase SortOrder No
tradePrice SortOrder No
tradePreference SortOrder No
tradeOnly SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
type SortOrder No

UserPerfumeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
amount SortOrder No
available SortOrder No
price SortOrder No
placeOfPurchase SortOrder No
tradePrice SortOrder No
tradePreference SortOrder No
tradeOnly SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
type SortOrder No


BoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No


IntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

UserPerfumeRatingUserIdPerfumeIdCompoundUniqueInput

Name Type Nullable
userId String No
perfumeId String No

UserPerfumeRatingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
gender SortOrder No
longevity SortOrder No
overall SortOrder No
priceValue SortOrder No
sillage SortOrder No
updatedAt SortOrder No

UserPerfumeRatingAvgOrderByAggregateInput

Name Type Nullable
gender SortOrder No
longevity SortOrder No
overall SortOrder No
priceValue SortOrder No
sillage SortOrder No

UserPerfumeRatingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
gender SortOrder No
longevity SortOrder No
overall SortOrder No
priceValue SortOrder No
sillage SortOrder No
updatedAt SortOrder No

UserPerfumeRatingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
gender SortOrder No
longevity SortOrder No
overall SortOrder No
priceValue SortOrder No
sillage SortOrder No
updatedAt SortOrder No

UserPerfumeRatingSumOrderByAggregateInput

Name Type Nullable
gender SortOrder No
longevity SortOrder No
overall SortOrder No
priceValue SortOrder No
sillage SortOrder No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

UserPerfumeReviewUserIdPerfumeIdCompoundUniqueInput

Name Type Nullable
userId String No
perfumeId String No

UserPerfumeReviewCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
review SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isApproved SortOrder No

UserPerfumeReviewMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
review SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isApproved SortOrder No

UserPerfumeReviewMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
review SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isApproved SortOrder No

UserPerfumeWishlistCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isPublic SortOrder No

UserPerfumeWishlistMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isPublic SortOrder No

UserPerfumeWishlistMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
isPublic SortOrder No

UserPerfumeScalarRelationFilter

Name Type Nullable
is UserPerfumeWhereInput No
isNot UserPerfumeWhereInput No

UserPerfumeCommentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
userPerfumeId SortOrder No
comment SortOrder No
isPublic SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

UserPerfumeCommentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
userPerfumeId SortOrder No
comment SortOrder No
isPublic SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

UserPerfumeCommentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
userPerfumeId SortOrder No
comment SortOrder No
isPublic SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

PerfumeNotesCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
perfumeOpenId SortOrder No
perfumeHeartId SortOrder No
perfumeCloseId SortOrder No

PerfumeNotesMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
perfumeOpenId SortOrder No
perfumeHeartId SortOrder No
perfumeCloseId SortOrder No

PerfumeNotesMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
perfumeOpenId SortOrder No
perfumeHeartId SortOrder No
perfumeCloseId SortOrder No


PerfumeNotesScalarRelationFilter

Name Type Nullable
is PerfumeNotesWhereInput No
isNot PerfumeNotesWhereInput No

PerfumeNoteRelationPerfumeIdNoteIdNoteTypeCompoundUniqueInput

Name Type Nullable
perfumeId String No
noteId String No
noteType PerfumeNoteType No

PerfumeNoteRelationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
perfumeId SortOrder No
noteId SortOrder No
noteType SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

PerfumeNoteRelationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
perfumeId SortOrder No
noteId SortOrder No
noteType SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

PerfumeNoteRelationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
perfumeId SortOrder No
noteId SortOrder No
noteType SortOrder No
createdAt SortOrder No
updatedAt SortOrder No


WishlistNotificationUserIdPerfumeIdCompoundUniqueInput

Name Type Nullable
userId String No
perfumeId String No

WishlistNotificationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
notifiedAt SortOrder No
updatedAt SortOrder No

WishlistNotificationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
notifiedAt SortOrder No
updatedAt SortOrder No

WishlistNotificationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
notifiedAt SortOrder No
updatedAt SortOrder No

IntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

TraderFeedbackTraderIdReviewerIdCompoundUniqueInput

Name Type Nullable
traderId String No
reviewerId String No

TraderFeedbackCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
traderId SortOrder No
reviewerId SortOrder No
rating SortOrder No
comment SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

TraderFeedbackAvgOrderByAggregateInput

Name Type Nullable
rating SortOrder No

TraderFeedbackMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
traderId SortOrder No
reviewerId SortOrder No
rating SortOrder No
comment SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

TraderFeedbackMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
traderId SortOrder No
reviewerId SortOrder No
rating SortOrder No
comment SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

TraderFeedbackSumOrderByAggregateInput

Name Type Nullable
rating SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No



JsonNullableFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
mode QueryMode | EnumQueryModeFieldRefInput No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
array_contains Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No

UserNullableScalarRelationFilter

Name Type Nullable
is UserWhereInput | Null Yes
isNot UserWhereInput | Null Yes

SecurityAuditLogCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
action SortOrder No
severity SortOrder No
resource SortOrder No
resourceId SortOrder No
ipAddress SortOrder No
userAgent SortOrder No
details SortOrder No
metadata SortOrder No
createdAt SortOrder No

SecurityAuditLogMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
action SortOrder No
severity SortOrder No
resource SortOrder No
resourceId SortOrder No
ipAddress SortOrder No
userAgent SortOrder No
createdAt SortOrder No

SecurityAuditLogMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
action SortOrder No
severity SortOrder No
resource SortOrder No
resourceId SortOrder No
ipAddress SortOrder No
userAgent SortOrder No
createdAt SortOrder No



JsonNullableWithAggregatesFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
mode QueryMode | EnumQueryModeFieldRefInput No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
array_contains Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No
_count NestedIntNullableFilter No
_min NestedJsonNullableFilter No
_max NestedJsonNullableFilter No


DateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes

UserAlertCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
alertType SortOrder No
title SortOrder No
message SortOrder No
isRead SortOrder No
isDismissed SortOrder No
metadata SortOrder No
createdAt SortOrder No
readAt SortOrder No
dismissedAt SortOrder No

UserAlertMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
alertType SortOrder No
title SortOrder No
message SortOrder No
isRead SortOrder No
isDismissed SortOrder No
createdAt SortOrder No
readAt SortOrder No
dismissedAt SortOrder No

UserAlertMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
perfumeId SortOrder No
alertType SortOrder No
title SortOrder No
message SortOrder No
isRead SortOrder No
isDismissed SortOrder No
createdAt SortOrder No
readAt SortOrder No
dismissedAt SortOrder No


DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

UserAlertPreferencesCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
wishlistAlertsEnabled SortOrder No
decantAlertsEnabled SortOrder No
emailWishlistAlerts SortOrder No
emailDecantAlerts SortOrder No
maxAlerts SortOrder No

UserAlertPreferencesAvgOrderByAggregateInput

Name Type Nullable
maxAlerts SortOrder No

UserAlertPreferencesMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
wishlistAlertsEnabled SortOrder No
decantAlertsEnabled SortOrder No
emailWishlistAlerts SortOrder No
emailDecantAlerts SortOrder No
maxAlerts SortOrder No

UserAlertPreferencesMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
wishlistAlertsEnabled SortOrder No
decantAlertsEnabled SortOrder No
emailWishlistAlerts SortOrder No
emailDecantAlerts SortOrder No
maxAlerts SortOrder No

UserAlertPreferencesSumOrderByAggregateInput

Name Type Nullable
maxAlerts SortOrder No



JsonFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
mode QueryMode | EnumQueryModeFieldRefInput No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
array_contains Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No

PendingSubmissionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
submissionType SortOrder No
submittedBy SortOrder No
status SortOrder No
submissionData SortOrder No
adminNotes SortOrder No
reviewedBy SortOrder No
reviewedAt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

PendingSubmissionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
submissionType SortOrder No
submittedBy SortOrder No
status SortOrder No
adminNotes SortOrder No
reviewedBy SortOrder No
reviewedAt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

PendingSubmissionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
submissionType SortOrder No
submittedBy SortOrder No
status SortOrder No
adminNotes SortOrder No
reviewedBy SortOrder No
reviewedAt SortOrder No
createdAt SortOrder No
updatedAt SortOrder No



JsonWithAggregatesFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
mode QueryMode | EnumQueryModeFieldRefInput No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
array_contains Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No
_count NestedIntFilter No
_min NestedJsonFilter No
_max NestedJsonFilter No

TraderContactMessageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
senderId SortOrder No
recipientId SortOrder No
subject SortOrder No
message SortOrder No
read SortOrder No
createdAt SortOrder No

TraderContactMessageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
senderId SortOrder No
recipientId SortOrder No
subject SortOrder No
message SortOrder No
read SortOrder No
createdAt SortOrder No

TraderContactMessageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
senderId SortOrder No
recipientId SortOrder No
subject SortOrder No
message SortOrder No
read SortOrder No
createdAt SortOrder No

MigrationStateCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
tableName SortOrder No
lastMigratedAt SortOrder No
recordCount SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

MigrationStateAvgOrderByAggregateInput

Name Type Nullable
recordCount SortOrder No

MigrationStateMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
tableName SortOrder No
lastMigratedAt SortOrder No
recordCount SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

MigrationStateMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
tableName SortOrder No
lastMigratedAt SortOrder No
recordCount SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

MigrationStateSumOrderByAggregateInput

Name Type Nullable
recordCount SortOrder No


















UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput

Name Type Nullable
create UserAlertPreferencesCreateWithoutUserInput | UserAlertPreferencesUncheckedCreateWithoutUserInput No
connectOrCreate UserAlertPreferencesCreateOrConnectWithoutUserInput No
connect UserAlertPreferencesWhereUniqueInput No













StringFieldUpdateOperationsInput

Name Type Nullable
set String No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

EnumUserRoleFieldUpdateOperationsInput

Name Type Nullable
set UserRole No

SecurityAuditLogUpdateManyWithoutUserNestedInput

Name Type Nullable
create SecurityAuditLogCreateWithoutUserInput | SecurityAuditLogCreateWithoutUserInput[] | SecurityAuditLogUncheckedCreateWithoutUserInput | SecurityAuditLogUncheckedCreateWithoutUserInput[] No
connectOrCreate SecurityAuditLogCreateOrConnectWithoutUserInput | SecurityAuditLogCreateOrConnectWithoutUserInput[] No
upsert SecurityAuditLogUpsertWithWhereUniqueWithoutUserInput | SecurityAuditLogUpsertWithWhereUniqueWithoutUserInput[] No
createMany SecurityAuditLogCreateManyUserInputEnvelope No
set SecurityAuditLogWhereUniqueInput | SecurityAuditLogWhereUniqueInput[] No
disconnect SecurityAuditLogWhereUniqueInput | SecurityAuditLogWhereUniqueInput[] No
delete SecurityAuditLogWhereUniqueInput | SecurityAuditLogWhereUniqueInput[] No
connect SecurityAuditLogWhereUniqueInput | SecurityAuditLogWhereUniqueInput[] No
update SecurityAuditLogUpdateWithWhereUniqueWithoutUserInput | SecurityAuditLogUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SecurityAuditLogUpdateManyWithWhereWithoutUserInput | SecurityAuditLogUpdateManyWithWhereWithoutUserInput[] No
deleteMany SecurityAuditLogScalarWhereInput | SecurityAuditLogScalarWhereInput[] No

UserAlertUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserAlertCreateWithoutUserInput | UserAlertCreateWithoutUserInput[] | UserAlertUncheckedCreateWithoutUserInput | UserAlertUncheckedCreateWithoutUserInput[] No
connectOrCreate UserAlertCreateOrConnectWithoutUserInput | UserAlertCreateOrConnectWithoutUserInput[] No
upsert UserAlertUpsertWithWhereUniqueWithoutUserInput | UserAlertUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserAlertCreateManyUserInputEnvelope No
set UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
disconnect UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
delete UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
connect UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
update UserAlertUpdateWithWhereUniqueWithoutUserInput | UserAlertUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserAlertUpdateManyWithWhereWithoutUserInput | UserAlertUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserAlertScalarWhereInput | UserAlertScalarWhereInput[] No


UserPerfumeUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeCreateWithoutUserInput | UserPerfumeCreateWithoutUserInput[] | UserPerfumeUncheckedCreateWithoutUserInput | UserPerfumeUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeCreateOrConnectWithoutUserInput | UserPerfumeCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeUpsertWithWhereUniqueWithoutUserInput | UserPerfumeUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeCreateManyUserInputEnvelope No
set UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
disconnect UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
delete UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
connect UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
update UserPerfumeUpdateWithWhereUniqueWithoutUserInput | UserPerfumeUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeUpdateManyWithWhereWithoutUserInput | UserPerfumeUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeScalarWhereInput | UserPerfumeScalarWhereInput[] No

UserPerfumeCommentUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeCommentCreateWithoutUserInput | UserPerfumeCommentCreateWithoutUserInput[] | UserPerfumeCommentUncheckedCreateWithoutUserInput | UserPerfumeCommentUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeCommentCreateOrConnectWithoutUserInput | UserPerfumeCommentCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeCommentUpsertWithWhereUniqueWithoutUserInput | UserPerfumeCommentUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeCommentCreateManyUserInputEnvelope No
set UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
disconnect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
delete UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
connect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
update UserPerfumeCommentUpdateWithWhereUniqueWithoutUserInput | UserPerfumeCommentUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeCommentUpdateManyWithWhereWithoutUserInput | UserPerfumeCommentUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeCommentScalarWhereInput | UserPerfumeCommentScalarWhereInput[] No

UserPerfumeRatingUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeRatingCreateWithoutUserInput | UserPerfumeRatingCreateWithoutUserInput[] | UserPerfumeRatingUncheckedCreateWithoutUserInput | UserPerfumeRatingUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeRatingCreateOrConnectWithoutUserInput | UserPerfumeRatingCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeRatingUpsertWithWhereUniqueWithoutUserInput | UserPerfumeRatingUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeRatingCreateManyUserInputEnvelope No
set UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
disconnect UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
delete UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
connect UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
update UserPerfumeRatingUpdateWithWhereUniqueWithoutUserInput | UserPerfumeRatingUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeRatingUpdateManyWithWhereWithoutUserInput | UserPerfumeRatingUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeRatingScalarWhereInput | UserPerfumeRatingScalarWhereInput[] No

UserPerfumeReviewUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeReviewCreateWithoutUserInput | UserPerfumeReviewCreateWithoutUserInput[] | UserPerfumeReviewUncheckedCreateWithoutUserInput | UserPerfumeReviewUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeReviewCreateOrConnectWithoutUserInput | UserPerfumeReviewCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeReviewUpsertWithWhereUniqueWithoutUserInput | UserPerfumeReviewUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeReviewCreateManyUserInputEnvelope No
set UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
disconnect UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
delete UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
connect UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
update UserPerfumeReviewUpdateWithWhereUniqueWithoutUserInput | UserPerfumeReviewUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeReviewUpdateManyWithWhereWithoutUserInput | UserPerfumeReviewUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeReviewScalarWhereInput | UserPerfumeReviewScalarWhereInput[] No

UserPerfumeWishlistUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeWishlistCreateWithoutUserInput | UserPerfumeWishlistCreateWithoutUserInput[] | UserPerfumeWishlistUncheckedCreateWithoutUserInput | UserPerfumeWishlistUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeWishlistCreateOrConnectWithoutUserInput | UserPerfumeWishlistCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeWishlistUpsertWithWhereUniqueWithoutUserInput | UserPerfumeWishlistUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeWishlistCreateManyUserInputEnvelope No
set UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
disconnect UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
delete UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
connect UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
update UserPerfumeWishlistUpdateWithWhereUniqueWithoutUserInput | UserPerfumeWishlistUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeWishlistUpdateManyWithWhereWithoutUserInput | UserPerfumeWishlistUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeWishlistScalarWhereInput | UserPerfumeWishlistScalarWhereInput[] No

WishlistNotificationUpdateManyWithoutUserNestedInput

Name Type Nullable
create WishlistNotificationCreateWithoutUserInput | WishlistNotificationCreateWithoutUserInput[] | WishlistNotificationUncheckedCreateWithoutUserInput | WishlistNotificationUncheckedCreateWithoutUserInput[] No
connectOrCreate WishlistNotificationCreateOrConnectWithoutUserInput | WishlistNotificationCreateOrConnectWithoutUserInput[] No
upsert WishlistNotificationUpsertWithWhereUniqueWithoutUserInput | WishlistNotificationUpsertWithWhereUniqueWithoutUserInput[] No
createMany WishlistNotificationCreateManyUserInputEnvelope No
set WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
disconnect WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
delete WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
connect WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
update WishlistNotificationUpdateWithWhereUniqueWithoutUserInput | WishlistNotificationUpdateWithWhereUniqueWithoutUserInput[] No
updateMany WishlistNotificationUpdateManyWithWhereWithoutUserInput | WishlistNotificationUpdateManyWithWhereWithoutUserInput[] No
deleteMany WishlistNotificationScalarWhereInput | WishlistNotificationScalarWhereInput[] No

TraderFeedbackUpdateManyWithoutTraderNestedInput

Name Type Nullable
create TraderFeedbackCreateWithoutTraderInput | TraderFeedbackCreateWithoutTraderInput[] | TraderFeedbackUncheckedCreateWithoutTraderInput | TraderFeedbackUncheckedCreateWithoutTraderInput[] No
connectOrCreate TraderFeedbackCreateOrConnectWithoutTraderInput | TraderFeedbackCreateOrConnectWithoutTraderInput[] No
upsert TraderFeedbackUpsertWithWhereUniqueWithoutTraderInput | TraderFeedbackUpsertWithWhereUniqueWithoutTraderInput[] No
createMany TraderFeedbackCreateManyTraderInputEnvelope No
set TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
disconnect TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
delete TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
connect TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
update TraderFeedbackUpdateWithWhereUniqueWithoutTraderInput | TraderFeedbackUpdateWithWhereUniqueWithoutTraderInput[] No
updateMany TraderFeedbackUpdateManyWithWhereWithoutTraderInput | TraderFeedbackUpdateManyWithWhereWithoutTraderInput[] No
deleteMany TraderFeedbackScalarWhereInput | TraderFeedbackScalarWhereInput[] No

TraderFeedbackUpdateManyWithoutReviewerNestedInput

Name Type Nullable
create TraderFeedbackCreateWithoutReviewerInput | TraderFeedbackCreateWithoutReviewerInput[] | TraderFeedbackUncheckedCreateWithoutReviewerInput | TraderFeedbackUncheckedCreateWithoutReviewerInput[] No
connectOrCreate TraderFeedbackCreateOrConnectWithoutReviewerInput | TraderFeedbackCreateOrConnectWithoutReviewerInput[] No
upsert TraderFeedbackUpsertWithWhereUniqueWithoutReviewerInput | TraderFeedbackUpsertWithWhereUniqueWithoutReviewerInput[] No
createMany TraderFeedbackCreateManyReviewerInputEnvelope No
set TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
disconnect TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
delete TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
connect TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
update TraderFeedbackUpdateWithWhereUniqueWithoutReviewerInput | TraderFeedbackUpdateWithWhereUniqueWithoutReviewerInput[] No
updateMany TraderFeedbackUpdateManyWithWhereWithoutReviewerInput | TraderFeedbackUpdateManyWithWhereWithoutReviewerInput[] No
deleteMany TraderFeedbackScalarWhereInput | TraderFeedbackScalarWhereInput[] No

PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput

Name Type Nullable
create PendingSubmissionCreateWithoutSubmittedByUserInput | PendingSubmissionCreateWithoutSubmittedByUserInput[] | PendingSubmissionUncheckedCreateWithoutSubmittedByUserInput | PendingSubmissionUncheckedCreateWithoutSubmittedByUserInput[] No
connectOrCreate PendingSubmissionCreateOrConnectWithoutSubmittedByUserInput | PendingSubmissionCreateOrConnectWithoutSubmittedByUserInput[] No
upsert PendingSubmissionUpsertWithWhereUniqueWithoutSubmittedByUserInput | PendingSubmissionUpsertWithWhereUniqueWithoutSubmittedByUserInput[] No
createMany PendingSubmissionCreateManySubmittedByUserInputEnvelope No
set PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
disconnect PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
delete PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
connect PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
update PendingSubmissionUpdateWithWhereUniqueWithoutSubmittedByUserInput | PendingSubmissionUpdateWithWhereUniqueWithoutSubmittedByUserInput[] No
updateMany PendingSubmissionUpdateManyWithWhereWithoutSubmittedByUserInput | PendingSubmissionUpdateManyWithWhereWithoutSubmittedByUserInput[] No
deleteMany PendingSubmissionScalarWhereInput | PendingSubmissionScalarWhereInput[] No

PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput

Name Type Nullable
create PendingSubmissionCreateWithoutReviewedByUserInput | PendingSubmissionCreateWithoutReviewedByUserInput[] | PendingSubmissionUncheckedCreateWithoutReviewedByUserInput | PendingSubmissionUncheckedCreateWithoutReviewedByUserInput[] No
connectOrCreate PendingSubmissionCreateOrConnectWithoutReviewedByUserInput | PendingSubmissionCreateOrConnectWithoutReviewedByUserInput[] No
upsert PendingSubmissionUpsertWithWhereUniqueWithoutReviewedByUserInput | PendingSubmissionUpsertWithWhereUniqueWithoutReviewedByUserInput[] No
createMany PendingSubmissionCreateManyReviewedByUserInputEnvelope No
set PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
disconnect PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
delete PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
connect PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
update PendingSubmissionUpdateWithWhereUniqueWithoutReviewedByUserInput | PendingSubmissionUpdateWithWhereUniqueWithoutReviewedByUserInput[] No
updateMany PendingSubmissionUpdateManyWithWhereWithoutReviewedByUserInput | PendingSubmissionUpdateManyWithWhereWithoutReviewedByUserInput[] No
deleteMany PendingSubmissionScalarWhereInput | PendingSubmissionScalarWhereInput[] No

TraderContactMessageUpdateManyWithoutSenderNestedInput

Name Type Nullable
create TraderContactMessageCreateWithoutSenderInput | TraderContactMessageCreateWithoutSenderInput[] | TraderContactMessageUncheckedCreateWithoutSenderInput | TraderContactMessageUncheckedCreateWithoutSenderInput[] No
connectOrCreate TraderContactMessageCreateOrConnectWithoutSenderInput | TraderContactMessageCreateOrConnectWithoutSenderInput[] No
upsert TraderContactMessageUpsertWithWhereUniqueWithoutSenderInput | TraderContactMessageUpsertWithWhereUniqueWithoutSenderInput[] No
createMany TraderContactMessageCreateManySenderInputEnvelope No
set TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
disconnect TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
delete TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
connect TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
update TraderContactMessageUpdateWithWhereUniqueWithoutSenderInput | TraderContactMessageUpdateWithWhereUniqueWithoutSenderInput[] No
updateMany TraderContactMessageUpdateManyWithWhereWithoutSenderInput | TraderContactMessageUpdateManyWithWhereWithoutSenderInput[] No
deleteMany TraderContactMessageScalarWhereInput | TraderContactMessageScalarWhereInput[] No

TraderContactMessageUpdateManyWithoutRecipientNestedInput

Name Type Nullable
create TraderContactMessageCreateWithoutRecipientInput | TraderContactMessageCreateWithoutRecipientInput[] | TraderContactMessageUncheckedCreateWithoutRecipientInput | TraderContactMessageUncheckedCreateWithoutRecipientInput[] No
connectOrCreate TraderContactMessageCreateOrConnectWithoutRecipientInput | TraderContactMessageCreateOrConnectWithoutRecipientInput[] No
upsert TraderContactMessageUpsertWithWhereUniqueWithoutRecipientInput | TraderContactMessageUpsertWithWhereUniqueWithoutRecipientInput[] No
createMany TraderContactMessageCreateManyRecipientInputEnvelope No
set TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
disconnect TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
delete TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
connect TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
update TraderContactMessageUpdateWithWhereUniqueWithoutRecipientInput | TraderContactMessageUpdateWithWhereUniqueWithoutRecipientInput[] No
updateMany TraderContactMessageUpdateManyWithWhereWithoutRecipientInput | TraderContactMessageUpdateManyWithWhereWithoutRecipientInput[] No
deleteMany TraderContactMessageScalarWhereInput | TraderContactMessageScalarWhereInput[] No

SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create SecurityAuditLogCreateWithoutUserInput | SecurityAuditLogCreateWithoutUserInput[] | SecurityAuditLogUncheckedCreateWithoutUserInput | SecurityAuditLogUncheckedCreateWithoutUserInput[] No
connectOrCreate SecurityAuditLogCreateOrConnectWithoutUserInput | SecurityAuditLogCreateOrConnectWithoutUserInput[] No
upsert SecurityAuditLogUpsertWithWhereUniqueWithoutUserInput | SecurityAuditLogUpsertWithWhereUniqueWithoutUserInput[] No
createMany SecurityAuditLogCreateManyUserInputEnvelope No
set SecurityAuditLogWhereUniqueInput | SecurityAuditLogWhereUniqueInput[] No
disconnect SecurityAuditLogWhereUniqueInput | SecurityAuditLogWhereUniqueInput[] No
delete SecurityAuditLogWhereUniqueInput | SecurityAuditLogWhereUniqueInput[] No
connect SecurityAuditLogWhereUniqueInput | SecurityAuditLogWhereUniqueInput[] No
update SecurityAuditLogUpdateWithWhereUniqueWithoutUserInput | SecurityAuditLogUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SecurityAuditLogUpdateManyWithWhereWithoutUserInput | SecurityAuditLogUpdateManyWithWhereWithoutUserInput[] No
deleteMany SecurityAuditLogScalarWhereInput | SecurityAuditLogScalarWhereInput[] No

UserAlertUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserAlertCreateWithoutUserInput | UserAlertCreateWithoutUserInput[] | UserAlertUncheckedCreateWithoutUserInput | UserAlertUncheckedCreateWithoutUserInput[] No
connectOrCreate UserAlertCreateOrConnectWithoutUserInput | UserAlertCreateOrConnectWithoutUserInput[] No
upsert UserAlertUpsertWithWhereUniqueWithoutUserInput | UserAlertUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserAlertCreateManyUserInputEnvelope No
set UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
disconnect UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
delete UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
connect UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
update UserAlertUpdateWithWhereUniqueWithoutUserInput | UserAlertUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserAlertUpdateManyWithWhereWithoutUserInput | UserAlertUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserAlertScalarWhereInput | UserAlertScalarWhereInput[] No


UserPerfumeUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeCreateWithoutUserInput | UserPerfumeCreateWithoutUserInput[] | UserPerfumeUncheckedCreateWithoutUserInput | UserPerfumeUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeCreateOrConnectWithoutUserInput | UserPerfumeCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeUpsertWithWhereUniqueWithoutUserInput | UserPerfumeUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeCreateManyUserInputEnvelope No
set UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
disconnect UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
delete UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
connect UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
update UserPerfumeUpdateWithWhereUniqueWithoutUserInput | UserPerfumeUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeUpdateManyWithWhereWithoutUserInput | UserPerfumeUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeScalarWhereInput | UserPerfumeScalarWhereInput[] No

UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeCommentCreateWithoutUserInput | UserPerfumeCommentCreateWithoutUserInput[] | UserPerfumeCommentUncheckedCreateWithoutUserInput | UserPerfumeCommentUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeCommentCreateOrConnectWithoutUserInput | UserPerfumeCommentCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeCommentUpsertWithWhereUniqueWithoutUserInput | UserPerfumeCommentUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeCommentCreateManyUserInputEnvelope No
set UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
disconnect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
delete UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
connect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
update UserPerfumeCommentUpdateWithWhereUniqueWithoutUserInput | UserPerfumeCommentUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeCommentUpdateManyWithWhereWithoutUserInput | UserPerfumeCommentUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeCommentScalarWhereInput | UserPerfumeCommentScalarWhereInput[] No

UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeRatingCreateWithoutUserInput | UserPerfumeRatingCreateWithoutUserInput[] | UserPerfumeRatingUncheckedCreateWithoutUserInput | UserPerfumeRatingUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeRatingCreateOrConnectWithoutUserInput | UserPerfumeRatingCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeRatingUpsertWithWhereUniqueWithoutUserInput | UserPerfumeRatingUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeRatingCreateManyUserInputEnvelope No
set UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
disconnect UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
delete UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
connect UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
update UserPerfumeRatingUpdateWithWhereUniqueWithoutUserInput | UserPerfumeRatingUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeRatingUpdateManyWithWhereWithoutUserInput | UserPerfumeRatingUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeRatingScalarWhereInput | UserPerfumeRatingScalarWhereInput[] No

UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeReviewCreateWithoutUserInput | UserPerfumeReviewCreateWithoutUserInput[] | UserPerfumeReviewUncheckedCreateWithoutUserInput | UserPerfumeReviewUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeReviewCreateOrConnectWithoutUserInput | UserPerfumeReviewCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeReviewUpsertWithWhereUniqueWithoutUserInput | UserPerfumeReviewUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeReviewCreateManyUserInputEnvelope No
set UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
disconnect UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
delete UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
connect UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
update UserPerfumeReviewUpdateWithWhereUniqueWithoutUserInput | UserPerfumeReviewUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeReviewUpdateManyWithWhereWithoutUserInput | UserPerfumeReviewUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeReviewScalarWhereInput | UserPerfumeReviewScalarWhereInput[] No

UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserPerfumeWishlistCreateWithoutUserInput | UserPerfumeWishlistCreateWithoutUserInput[] | UserPerfumeWishlistUncheckedCreateWithoutUserInput | UserPerfumeWishlistUncheckedCreateWithoutUserInput[] No
connectOrCreate UserPerfumeWishlistCreateOrConnectWithoutUserInput | UserPerfumeWishlistCreateOrConnectWithoutUserInput[] No
upsert UserPerfumeWishlistUpsertWithWhereUniqueWithoutUserInput | UserPerfumeWishlistUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserPerfumeWishlistCreateManyUserInputEnvelope No
set UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
disconnect UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
delete UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
connect UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
update UserPerfumeWishlistUpdateWithWhereUniqueWithoutUserInput | UserPerfumeWishlistUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserPerfumeWishlistUpdateManyWithWhereWithoutUserInput | UserPerfumeWishlistUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserPerfumeWishlistScalarWhereInput | UserPerfumeWishlistScalarWhereInput[] No

WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create WishlistNotificationCreateWithoutUserInput | WishlistNotificationCreateWithoutUserInput[] | WishlistNotificationUncheckedCreateWithoutUserInput | WishlistNotificationUncheckedCreateWithoutUserInput[] No
connectOrCreate WishlistNotificationCreateOrConnectWithoutUserInput | WishlistNotificationCreateOrConnectWithoutUserInput[] No
upsert WishlistNotificationUpsertWithWhereUniqueWithoutUserInput | WishlistNotificationUpsertWithWhereUniqueWithoutUserInput[] No
createMany WishlistNotificationCreateManyUserInputEnvelope No
set WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
disconnect WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
delete WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
connect WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
update WishlistNotificationUpdateWithWhereUniqueWithoutUserInput | WishlistNotificationUpdateWithWhereUniqueWithoutUserInput[] No
updateMany WishlistNotificationUpdateManyWithWhereWithoutUserInput | WishlistNotificationUpdateManyWithWhereWithoutUserInput[] No
deleteMany WishlistNotificationScalarWhereInput | WishlistNotificationScalarWhereInput[] No

TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput

Name Type Nullable
create TraderFeedbackCreateWithoutTraderInput | TraderFeedbackCreateWithoutTraderInput[] | TraderFeedbackUncheckedCreateWithoutTraderInput | TraderFeedbackUncheckedCreateWithoutTraderInput[] No
connectOrCreate TraderFeedbackCreateOrConnectWithoutTraderInput | TraderFeedbackCreateOrConnectWithoutTraderInput[] No
upsert TraderFeedbackUpsertWithWhereUniqueWithoutTraderInput | TraderFeedbackUpsertWithWhereUniqueWithoutTraderInput[] No
createMany TraderFeedbackCreateManyTraderInputEnvelope No
set TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
disconnect TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
delete TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
connect TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
update TraderFeedbackUpdateWithWhereUniqueWithoutTraderInput | TraderFeedbackUpdateWithWhereUniqueWithoutTraderInput[] No
updateMany TraderFeedbackUpdateManyWithWhereWithoutTraderInput | TraderFeedbackUpdateManyWithWhereWithoutTraderInput[] No
deleteMany TraderFeedbackScalarWhereInput | TraderFeedbackScalarWhereInput[] No

TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput

Name Type Nullable
create TraderFeedbackCreateWithoutReviewerInput | TraderFeedbackCreateWithoutReviewerInput[] | TraderFeedbackUncheckedCreateWithoutReviewerInput | TraderFeedbackUncheckedCreateWithoutReviewerInput[] No
connectOrCreate TraderFeedbackCreateOrConnectWithoutReviewerInput | TraderFeedbackCreateOrConnectWithoutReviewerInput[] No
upsert TraderFeedbackUpsertWithWhereUniqueWithoutReviewerInput | TraderFeedbackUpsertWithWhereUniqueWithoutReviewerInput[] No
createMany TraderFeedbackCreateManyReviewerInputEnvelope No
set TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
disconnect TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
delete TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
connect TraderFeedbackWhereUniqueInput | TraderFeedbackWhereUniqueInput[] No
update TraderFeedbackUpdateWithWhereUniqueWithoutReviewerInput | TraderFeedbackUpdateWithWhereUniqueWithoutReviewerInput[] No
updateMany TraderFeedbackUpdateManyWithWhereWithoutReviewerInput | TraderFeedbackUpdateManyWithWhereWithoutReviewerInput[] No
deleteMany TraderFeedbackScalarWhereInput | TraderFeedbackScalarWhereInput[] No

PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput

Name Type Nullable
create PendingSubmissionCreateWithoutSubmittedByUserInput | PendingSubmissionCreateWithoutSubmittedByUserInput[] | PendingSubmissionUncheckedCreateWithoutSubmittedByUserInput | PendingSubmissionUncheckedCreateWithoutSubmittedByUserInput[] No
connectOrCreate PendingSubmissionCreateOrConnectWithoutSubmittedByUserInput | PendingSubmissionCreateOrConnectWithoutSubmittedByUserInput[] No
upsert PendingSubmissionUpsertWithWhereUniqueWithoutSubmittedByUserInput | PendingSubmissionUpsertWithWhereUniqueWithoutSubmittedByUserInput[] No
createMany PendingSubmissionCreateManySubmittedByUserInputEnvelope No
set PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
disconnect PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
delete PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
connect PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
update PendingSubmissionUpdateWithWhereUniqueWithoutSubmittedByUserInput | PendingSubmissionUpdateWithWhereUniqueWithoutSubmittedByUserInput[] No
updateMany PendingSubmissionUpdateManyWithWhereWithoutSubmittedByUserInput | PendingSubmissionUpdateManyWithWhereWithoutSubmittedByUserInput[] No
deleteMany PendingSubmissionScalarWhereInput | PendingSubmissionScalarWhereInput[] No

PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput

Name Type Nullable
create PendingSubmissionCreateWithoutReviewedByUserInput | PendingSubmissionCreateWithoutReviewedByUserInput[] | PendingSubmissionUncheckedCreateWithoutReviewedByUserInput | PendingSubmissionUncheckedCreateWithoutReviewedByUserInput[] No
connectOrCreate PendingSubmissionCreateOrConnectWithoutReviewedByUserInput | PendingSubmissionCreateOrConnectWithoutReviewedByUserInput[] No
upsert PendingSubmissionUpsertWithWhereUniqueWithoutReviewedByUserInput | PendingSubmissionUpsertWithWhereUniqueWithoutReviewedByUserInput[] No
createMany PendingSubmissionCreateManyReviewedByUserInputEnvelope No
set PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
disconnect PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
delete PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
connect PendingSubmissionWhereUniqueInput | PendingSubmissionWhereUniqueInput[] No
update PendingSubmissionUpdateWithWhereUniqueWithoutReviewedByUserInput | PendingSubmissionUpdateWithWhereUniqueWithoutReviewedByUserInput[] No
updateMany PendingSubmissionUpdateManyWithWhereWithoutReviewedByUserInput | PendingSubmissionUpdateManyWithWhereWithoutReviewedByUserInput[] No
deleteMany PendingSubmissionScalarWhereInput | PendingSubmissionScalarWhereInput[] No

TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput

Name Type Nullable
create TraderContactMessageCreateWithoutSenderInput | TraderContactMessageCreateWithoutSenderInput[] | TraderContactMessageUncheckedCreateWithoutSenderInput | TraderContactMessageUncheckedCreateWithoutSenderInput[] No
connectOrCreate TraderContactMessageCreateOrConnectWithoutSenderInput | TraderContactMessageCreateOrConnectWithoutSenderInput[] No
upsert TraderContactMessageUpsertWithWhereUniqueWithoutSenderInput | TraderContactMessageUpsertWithWhereUniqueWithoutSenderInput[] No
createMany TraderContactMessageCreateManySenderInputEnvelope No
set TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
disconnect TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
delete TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
connect TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
update TraderContactMessageUpdateWithWhereUniqueWithoutSenderInput | TraderContactMessageUpdateWithWhereUniqueWithoutSenderInput[] No
updateMany TraderContactMessageUpdateManyWithWhereWithoutSenderInput | TraderContactMessageUpdateManyWithWhereWithoutSenderInput[] No
deleteMany TraderContactMessageScalarWhereInput | TraderContactMessageScalarWhereInput[] No

TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput

Name Type Nullable
create TraderContactMessageCreateWithoutRecipientInput | TraderContactMessageCreateWithoutRecipientInput[] | TraderContactMessageUncheckedCreateWithoutRecipientInput | TraderContactMessageUncheckedCreateWithoutRecipientInput[] No
connectOrCreate TraderContactMessageCreateOrConnectWithoutRecipientInput | TraderContactMessageCreateOrConnectWithoutRecipientInput[] No
upsert TraderContactMessageUpsertWithWhereUniqueWithoutRecipientInput | TraderContactMessageUpsertWithWhereUniqueWithoutRecipientInput[] No
createMany TraderContactMessageCreateManyRecipientInputEnvelope No
set TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
disconnect TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
delete TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
connect TraderContactMessageWhereUniqueInput | TraderContactMessageWhereUniqueInput[] No
update TraderContactMessageUpdateWithWhereUniqueWithoutRecipientInput | TraderContactMessageUpdateWithWhereUniqueWithoutRecipientInput[] No
updateMany TraderContactMessageUpdateManyWithWhereWithoutRecipientInput | TraderContactMessageUpdateManyWithWhereWithoutRecipientInput[] No
deleteMany TraderContactMessageScalarWhereInput | TraderContactMessageScalarWhereInput[] No



EnumHouseTypeFieldUpdateOperationsInput

Name Type Nullable
set HouseType No

PerfumeUpdateManyWithoutPerfumeHouseNestedInput

Name Type Nullable
create PerfumeCreateWithoutPerfumeHouseInput | PerfumeCreateWithoutPerfumeHouseInput[] | PerfumeUncheckedCreateWithoutPerfumeHouseInput | PerfumeUncheckedCreateWithoutPerfumeHouseInput[] No
connectOrCreate PerfumeCreateOrConnectWithoutPerfumeHouseInput | PerfumeCreateOrConnectWithoutPerfumeHouseInput[] No
upsert PerfumeUpsertWithWhereUniqueWithoutPerfumeHouseInput | PerfumeUpsertWithWhereUniqueWithoutPerfumeHouseInput[] No
createMany PerfumeCreateManyPerfumeHouseInputEnvelope No
set PerfumeWhereUniqueInput | PerfumeWhereUniqueInput[] No
disconnect PerfumeWhereUniqueInput | PerfumeWhereUniqueInput[] No
delete PerfumeWhereUniqueInput | PerfumeWhereUniqueInput[] No
connect PerfumeWhereUniqueInput | PerfumeWhereUniqueInput[] No
update PerfumeUpdateWithWhereUniqueWithoutPerfumeHouseInput | PerfumeUpdateWithWhereUniqueWithoutPerfumeHouseInput[] No
updateMany PerfumeUpdateManyWithWhereWithoutPerfumeHouseInput | PerfumeUpdateManyWithWhereWithoutPerfumeHouseInput[] No
deleteMany PerfumeScalarWhereInput | PerfumeScalarWhereInput[] No

PerfumeUncheckedUpdateManyWithoutPerfumeHouseNestedInput

Name Type Nullable
create PerfumeCreateWithoutPerfumeHouseInput | PerfumeCreateWithoutPerfumeHouseInput[] | PerfumeUncheckedCreateWithoutPerfumeHouseInput | PerfumeUncheckedCreateWithoutPerfumeHouseInput[] No
connectOrCreate PerfumeCreateOrConnectWithoutPerfumeHouseInput | PerfumeCreateOrConnectWithoutPerfumeHouseInput[] No
upsert PerfumeUpsertWithWhereUniqueWithoutPerfumeHouseInput | PerfumeUpsertWithWhereUniqueWithoutPerfumeHouseInput[] No
createMany PerfumeCreateManyPerfumeHouseInputEnvelope No
set PerfumeWhereUniqueInput | PerfumeWhereUniqueInput[] No
disconnect PerfumeWhereUniqueInput | PerfumeWhereUniqueInput[] No
delete PerfumeWhereUniqueInput | PerfumeWhereUniqueInput[] No
connect PerfumeWhereUniqueInput | PerfumeWhereUniqueInput[] No
update PerfumeUpdateWithWhereUniqueWithoutPerfumeHouseInput | PerfumeUpdateWithWhereUniqueWithoutPerfumeHouseInput[] No
updateMany PerfumeUpdateManyWithWhereWithoutPerfumeHouseInput | PerfumeUpdateManyWithWhereWithoutPerfumeHouseInput[] No
deleteMany PerfumeScalarWhereInput | PerfumeScalarWhereInput[] No

PerfumeHouseCreateNestedOneWithoutPerfumesInput

Name Type Nullable
create PerfumeHouseCreateWithoutPerfumesInput | PerfumeHouseUncheckedCreateWithoutPerfumesInput No
connectOrCreate PerfumeHouseCreateOrConnectWithoutPerfumesInput No
connect PerfumeHouseWhereUniqueInput No


















PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create PerfumeNoteRelationCreateWithoutPerfumeInput | PerfumeNoteRelationCreateWithoutPerfumeInput[] | PerfumeNoteRelationUncheckedCreateWithoutPerfumeInput | PerfumeNoteRelationUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate PerfumeNoteRelationCreateOrConnectWithoutPerfumeInput | PerfumeNoteRelationCreateOrConnectWithoutPerfumeInput[] No
upsert PerfumeNoteRelationUpsertWithWhereUniqueWithoutPerfumeInput | PerfumeNoteRelationUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany PerfumeNoteRelationCreateManyPerfumeInputEnvelope No
set PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
disconnect PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
delete PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
connect PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
update PerfumeNoteRelationUpdateWithWhereUniqueWithoutPerfumeInput | PerfumeNoteRelationUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany PerfumeNoteRelationUpdateManyWithWhereWithoutPerfumeInput | PerfumeNoteRelationUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany PerfumeNoteRelationScalarWhereInput | PerfumeNoteRelationScalarWhereInput[] No

UserAlertUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserAlertCreateWithoutPerfumeInput | UserAlertCreateWithoutPerfumeInput[] | UserAlertUncheckedCreateWithoutPerfumeInput | UserAlertUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserAlertCreateOrConnectWithoutPerfumeInput | UserAlertCreateOrConnectWithoutPerfumeInput[] No
upsert UserAlertUpsertWithWhereUniqueWithoutPerfumeInput | UserAlertUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserAlertCreateManyPerfumeInputEnvelope No
set UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
disconnect UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
delete UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
connect UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
update UserAlertUpdateWithWhereUniqueWithoutPerfumeInput | UserAlertUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserAlertUpdateManyWithWhereWithoutPerfumeInput | UserAlertUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserAlertScalarWhereInput | UserAlertScalarWhereInput[] No

UserPerfumeUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeCreateWithoutPerfumeInput | UserPerfumeCreateWithoutPerfumeInput[] | UserPerfumeUncheckedCreateWithoutPerfumeInput | UserPerfumeUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeCreateOrConnectWithoutPerfumeInput | UserPerfumeCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeCreateManyPerfumeInputEnvelope No
set UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
disconnect UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
delete UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
connect UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
update UserPerfumeUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeScalarWhereInput | UserPerfumeScalarWhereInput[] No

UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeCommentCreateWithoutPerfumeInput | UserPerfumeCommentCreateWithoutPerfumeInput[] | UserPerfumeCommentUncheckedCreateWithoutPerfumeInput | UserPerfumeCommentUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeCommentCreateOrConnectWithoutPerfumeInput | UserPerfumeCommentCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeCommentUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeCommentUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeCommentCreateManyPerfumeInputEnvelope No
set UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
disconnect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
delete UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
connect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
update UserPerfumeCommentUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeCommentUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeCommentUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeCommentUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeCommentScalarWhereInput | UserPerfumeCommentScalarWhereInput[] No

UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeRatingCreateWithoutPerfumeInput | UserPerfumeRatingCreateWithoutPerfumeInput[] | UserPerfumeRatingUncheckedCreateWithoutPerfumeInput | UserPerfumeRatingUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeRatingCreateOrConnectWithoutPerfumeInput | UserPerfumeRatingCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeRatingUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeRatingUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeRatingCreateManyPerfumeInputEnvelope No
set UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
disconnect UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
delete UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
connect UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
update UserPerfumeRatingUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeRatingUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeRatingUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeRatingUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeRatingScalarWhereInput | UserPerfumeRatingScalarWhereInput[] No

UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeReviewCreateWithoutPerfumeInput | UserPerfumeReviewCreateWithoutPerfumeInput[] | UserPerfumeReviewUncheckedCreateWithoutPerfumeInput | UserPerfumeReviewUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeReviewCreateOrConnectWithoutPerfumeInput | UserPerfumeReviewCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeReviewUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeReviewUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeReviewCreateManyPerfumeInputEnvelope No
set UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
disconnect UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
delete UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
connect UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
update UserPerfumeReviewUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeReviewUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeReviewUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeReviewUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeReviewScalarWhereInput | UserPerfumeReviewScalarWhereInput[] No

UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeWishlistCreateWithoutPerfumeInput | UserPerfumeWishlistCreateWithoutPerfumeInput[] | UserPerfumeWishlistUncheckedCreateWithoutPerfumeInput | UserPerfumeWishlistUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeWishlistCreateOrConnectWithoutPerfumeInput | UserPerfumeWishlistCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeWishlistUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeWishlistUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeWishlistCreateManyPerfumeInputEnvelope No
set UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
disconnect UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
delete UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
connect UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
update UserPerfumeWishlistUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeWishlistUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeWishlistUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeWishlistUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeWishlistScalarWhereInput | UserPerfumeWishlistScalarWhereInput[] No

WishlistNotificationUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create WishlistNotificationCreateWithoutPerfumeInput | WishlistNotificationCreateWithoutPerfumeInput[] | WishlistNotificationUncheckedCreateWithoutPerfumeInput | WishlistNotificationUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate WishlistNotificationCreateOrConnectWithoutPerfumeInput | WishlistNotificationCreateOrConnectWithoutPerfumeInput[] No
upsert WishlistNotificationUpsertWithWhereUniqueWithoutPerfumeInput | WishlistNotificationUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany WishlistNotificationCreateManyPerfumeInputEnvelope No
set WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
disconnect WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
delete WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
connect WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
update WishlistNotificationUpdateWithWhereUniqueWithoutPerfumeInput | WishlistNotificationUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany WishlistNotificationUpdateManyWithWhereWithoutPerfumeInput | WishlistNotificationUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany WishlistNotificationScalarWhereInput | WishlistNotificationScalarWhereInput[] No

PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create PerfumeNoteRelationCreateWithoutPerfumeInput | PerfumeNoteRelationCreateWithoutPerfumeInput[] | PerfumeNoteRelationUncheckedCreateWithoutPerfumeInput | PerfumeNoteRelationUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate PerfumeNoteRelationCreateOrConnectWithoutPerfumeInput | PerfumeNoteRelationCreateOrConnectWithoutPerfumeInput[] No
upsert PerfumeNoteRelationUpsertWithWhereUniqueWithoutPerfumeInput | PerfumeNoteRelationUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany PerfumeNoteRelationCreateManyPerfumeInputEnvelope No
set PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
disconnect PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
delete PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
connect PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
update PerfumeNoteRelationUpdateWithWhereUniqueWithoutPerfumeInput | PerfumeNoteRelationUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany PerfumeNoteRelationUpdateManyWithWhereWithoutPerfumeInput | PerfumeNoteRelationUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany PerfumeNoteRelationScalarWhereInput | PerfumeNoteRelationScalarWhereInput[] No

UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserAlertCreateWithoutPerfumeInput | UserAlertCreateWithoutPerfumeInput[] | UserAlertUncheckedCreateWithoutPerfumeInput | UserAlertUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserAlertCreateOrConnectWithoutPerfumeInput | UserAlertCreateOrConnectWithoutPerfumeInput[] No
upsert UserAlertUpsertWithWhereUniqueWithoutPerfumeInput | UserAlertUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserAlertCreateManyPerfumeInputEnvelope No
set UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
disconnect UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
delete UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
connect UserAlertWhereUniqueInput | UserAlertWhereUniqueInput[] No
update UserAlertUpdateWithWhereUniqueWithoutPerfumeInput | UserAlertUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserAlertUpdateManyWithWhereWithoutPerfumeInput | UserAlertUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserAlertScalarWhereInput | UserAlertScalarWhereInput[] No

UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeCreateWithoutPerfumeInput | UserPerfumeCreateWithoutPerfumeInput[] | UserPerfumeUncheckedCreateWithoutPerfumeInput | UserPerfumeUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeCreateOrConnectWithoutPerfumeInput | UserPerfumeCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeCreateManyPerfumeInputEnvelope No
set UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
disconnect UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
delete UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
connect UserPerfumeWhereUniqueInput | UserPerfumeWhereUniqueInput[] No
update UserPerfumeUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeScalarWhereInput | UserPerfumeScalarWhereInput[] No

UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeCommentCreateWithoutPerfumeInput | UserPerfumeCommentCreateWithoutPerfumeInput[] | UserPerfumeCommentUncheckedCreateWithoutPerfumeInput | UserPerfumeCommentUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeCommentCreateOrConnectWithoutPerfumeInput | UserPerfumeCommentCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeCommentUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeCommentUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeCommentCreateManyPerfumeInputEnvelope No
set UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
disconnect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
delete UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
connect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
update UserPerfumeCommentUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeCommentUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeCommentUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeCommentUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeCommentScalarWhereInput | UserPerfumeCommentScalarWhereInput[] No

UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeRatingCreateWithoutPerfumeInput | UserPerfumeRatingCreateWithoutPerfumeInput[] | UserPerfumeRatingUncheckedCreateWithoutPerfumeInput | UserPerfumeRatingUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeRatingCreateOrConnectWithoutPerfumeInput | UserPerfumeRatingCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeRatingUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeRatingUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeRatingCreateManyPerfumeInputEnvelope No
set UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
disconnect UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
delete UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
connect UserPerfumeRatingWhereUniqueInput | UserPerfumeRatingWhereUniqueInput[] No
update UserPerfumeRatingUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeRatingUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeRatingUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeRatingUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeRatingScalarWhereInput | UserPerfumeRatingScalarWhereInput[] No

UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeReviewCreateWithoutPerfumeInput | UserPerfumeReviewCreateWithoutPerfumeInput[] | UserPerfumeReviewUncheckedCreateWithoutPerfumeInput | UserPerfumeReviewUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeReviewCreateOrConnectWithoutPerfumeInput | UserPerfumeReviewCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeReviewUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeReviewUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeReviewCreateManyPerfumeInputEnvelope No
set UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
disconnect UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
delete UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
connect UserPerfumeReviewWhereUniqueInput | UserPerfumeReviewWhereUniqueInput[] No
update UserPerfumeReviewUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeReviewUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeReviewUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeReviewUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeReviewScalarWhereInput | UserPerfumeReviewScalarWhereInput[] No

UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create UserPerfumeWishlistCreateWithoutPerfumeInput | UserPerfumeWishlistCreateWithoutPerfumeInput[] | UserPerfumeWishlistUncheckedCreateWithoutPerfumeInput | UserPerfumeWishlistUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate UserPerfumeWishlistCreateOrConnectWithoutPerfumeInput | UserPerfumeWishlistCreateOrConnectWithoutPerfumeInput[] No
upsert UserPerfumeWishlistUpsertWithWhereUniqueWithoutPerfumeInput | UserPerfumeWishlistUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany UserPerfumeWishlistCreateManyPerfumeInputEnvelope No
set UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
disconnect UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
delete UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
connect UserPerfumeWishlistWhereUniqueInput | UserPerfumeWishlistWhereUniqueInput[] No
update UserPerfumeWishlistUpdateWithWhereUniqueWithoutPerfumeInput | UserPerfumeWishlistUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany UserPerfumeWishlistUpdateManyWithWhereWithoutPerfumeInput | UserPerfumeWishlistUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany UserPerfumeWishlistScalarWhereInput | UserPerfumeWishlistScalarWhereInput[] No

WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput

Name Type Nullable
create WishlistNotificationCreateWithoutPerfumeInput | WishlistNotificationCreateWithoutPerfumeInput[] | WishlistNotificationUncheckedCreateWithoutPerfumeInput | WishlistNotificationUncheckedCreateWithoutPerfumeInput[] No
connectOrCreate WishlistNotificationCreateOrConnectWithoutPerfumeInput | WishlistNotificationCreateOrConnectWithoutPerfumeInput[] No
upsert WishlistNotificationUpsertWithWhereUniqueWithoutPerfumeInput | WishlistNotificationUpsertWithWhereUniqueWithoutPerfumeInput[] No
createMany WishlistNotificationCreateManyPerfumeInputEnvelope No
set WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
disconnect WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
delete WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
connect WishlistNotificationWhereUniqueInput | WishlistNotificationWhereUniqueInput[] No
update WishlistNotificationUpdateWithWhereUniqueWithoutPerfumeInput | WishlistNotificationUpdateWithWhereUniqueWithoutPerfumeInput[] No
updateMany WishlistNotificationUpdateManyWithWhereWithoutPerfumeInput | WishlistNotificationUpdateManyWithWhereWithoutPerfumeInput[] No
deleteMany WishlistNotificationScalarWhereInput | WishlistNotificationScalarWhereInput[] No

PerfumeCreateNestedOneWithoutUserPerfumeInput

Name Type Nullable
create PerfumeCreateWithoutUserPerfumeInput | PerfumeUncheckedCreateWithoutUserPerfumeInput No
connectOrCreate PerfumeCreateOrConnectWithoutUserPerfumeInput No
connect PerfumeWhereUniqueInput No

UserCreateNestedOneWithoutUserPerfumeInput

Name Type Nullable
create UserCreateWithoutUserPerfumeInput | UserUncheckedCreateWithoutUserPerfumeInput No
connectOrCreate UserCreateOrConnectWithoutUserPerfumeInput No
connect UserWhereUniqueInput No



EnumTradePreferenceFieldUpdateOperationsInput

Name Type Nullable
set TradePreference No

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

EnumPerfumeTypeFieldUpdateOperationsInput

Name Type Nullable
set PerfumeType No



UserPerfumeCommentUpdateManyWithoutUserPerfumeNestedInput

Name Type Nullable
create UserPerfumeCommentCreateWithoutUserPerfumeInput | UserPerfumeCommentCreateWithoutUserPerfumeInput[] | UserPerfumeCommentUncheckedCreateWithoutUserPerfumeInput | UserPerfumeCommentUncheckedCreateWithoutUserPerfumeInput[] No
connectOrCreate UserPerfumeCommentCreateOrConnectWithoutUserPerfumeInput | UserPerfumeCommentCreateOrConnectWithoutUserPerfumeInput[] No
upsert UserPerfumeCommentUpsertWithWhereUniqueWithoutUserPerfumeInput | UserPerfumeCommentUpsertWithWhereUniqueWithoutUserPerfumeInput[] No
createMany UserPerfumeCommentCreateManyUserPerfumeInputEnvelope No
set UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
disconnect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
delete UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
connect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
update UserPerfumeCommentUpdateWithWhereUniqueWithoutUserPerfumeInput | UserPerfumeCommentUpdateWithWhereUniqueWithoutUserPerfumeInput[] No
updateMany UserPerfumeCommentUpdateManyWithWhereWithoutUserPerfumeInput | UserPerfumeCommentUpdateManyWithWhereWithoutUserPerfumeInput[] No
deleteMany UserPerfumeCommentScalarWhereInput | UserPerfumeCommentScalarWhereInput[] No

UserPerfumeCommentUncheckedUpdateManyWithoutUserPerfumeNestedInput

Name Type Nullable
create UserPerfumeCommentCreateWithoutUserPerfumeInput | UserPerfumeCommentCreateWithoutUserPerfumeInput[] | UserPerfumeCommentUncheckedCreateWithoutUserPerfumeInput | UserPerfumeCommentUncheckedCreateWithoutUserPerfumeInput[] No
connectOrCreate UserPerfumeCommentCreateOrConnectWithoutUserPerfumeInput | UserPerfumeCommentCreateOrConnectWithoutUserPerfumeInput[] No
upsert UserPerfumeCommentUpsertWithWhereUniqueWithoutUserPerfumeInput | UserPerfumeCommentUpsertWithWhereUniqueWithoutUserPerfumeInput[] No
createMany UserPerfumeCommentCreateManyUserPerfumeInputEnvelope No
set UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
disconnect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
delete UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
connect UserPerfumeCommentWhereUniqueInput | UserPerfumeCommentWhereUniqueInput[] No
update UserPerfumeCommentUpdateWithWhereUniqueWithoutUserPerfumeInput | UserPerfumeCommentUpdateWithWhereUniqueWithoutUserPerfumeInput[] No
updateMany UserPerfumeCommentUpdateManyWithWhereWithoutUserPerfumeInput | UserPerfumeCommentUpdateManyWithWhereWithoutUserPerfumeInput[] No
deleteMany UserPerfumeCommentScalarWhereInput | UserPerfumeCommentScalarWhereInput[] No

PerfumeCreateNestedOneWithoutUserPerfumeRatingInput

Name Type Nullable
create PerfumeCreateWithoutUserPerfumeRatingInput | PerfumeUncheckedCreateWithoutUserPerfumeRatingInput No
connectOrCreate PerfumeCreateOrConnectWithoutUserPerfumeRatingInput No
connect PerfumeWhereUniqueInput No

UserCreateNestedOneWithoutUserPerfumeRatingInput

Name Type Nullable
create UserCreateWithoutUserPerfumeRatingInput | UserUncheckedCreateWithoutUserPerfumeRatingInput No
connectOrCreate UserCreateOrConnectWithoutUserPerfumeRatingInput No
connect UserWhereUniqueInput No

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No



PerfumeCreateNestedOneWithoutUserPerfumeReviewInput

Name Type Nullable
create PerfumeCreateWithoutUserPerfumeReviewInput | PerfumeUncheckedCreateWithoutUserPerfumeReviewInput No
connectOrCreate PerfumeCreateOrConnectWithoutUserPerfumeReviewInput No
connect PerfumeWhereUniqueInput No

UserCreateNestedOneWithoutUserPerfumeReviewInput

Name Type Nullable
create UserCreateWithoutUserPerfumeReviewInput | UserUncheckedCreateWithoutUserPerfumeReviewInput No
connectOrCreate UserCreateOrConnectWithoutUserPerfumeReviewInput No
connect UserWhereUniqueInput No



PerfumeCreateNestedOneWithoutUserPerfumeWishlistInput

Name Type Nullable
create PerfumeCreateWithoutUserPerfumeWishlistInput | PerfumeUncheckedCreateWithoutUserPerfumeWishlistInput No
connectOrCreate PerfumeCreateOrConnectWithoutUserPerfumeWishlistInput No
connect PerfumeWhereUniqueInput No

UserCreateNestedOneWithoutUserPerfumeWishlistInput

Name Type Nullable
create UserCreateWithoutUserPerfumeWishlistInput | UserUncheckedCreateWithoutUserPerfumeWishlistInput No
connectOrCreate UserCreateOrConnectWithoutUserPerfumeWishlistInput No
connect UserWhereUniqueInput No



PerfumeCreateNestedOneWithoutUserPerfumeCommentsInput

Name Type Nullable
create PerfumeCreateWithoutUserPerfumeCommentsInput | PerfumeUncheckedCreateWithoutUserPerfumeCommentsInput No
connectOrCreate PerfumeCreateOrConnectWithoutUserPerfumeCommentsInput No
connect PerfumeWhereUniqueInput No

UserCreateNestedOneWithoutUserPerfumeCommentsInput

Name Type Nullable
create UserCreateWithoutUserPerfumeCommentsInput | UserUncheckedCreateWithoutUserPerfumeCommentsInput No
connectOrCreate UserCreateOrConnectWithoutUserPerfumeCommentsInput No
connect UserWhereUniqueInput No

UserPerfumeCreateNestedOneWithoutCommentsInput

Name Type Nullable
create UserPerfumeCreateWithoutCommentsInput | UserPerfumeUncheckedCreateWithoutCommentsInput No
connectOrCreate UserPerfumeCreateOrConnectWithoutCommentsInput No
connect UserPerfumeWhereUniqueInput No






PerfumeNoteRelationUpdateManyWithoutNoteNestedInput

Name Type Nullable
create PerfumeNoteRelationCreateWithoutNoteInput | PerfumeNoteRelationCreateWithoutNoteInput[] | PerfumeNoteRelationUncheckedCreateWithoutNoteInput | PerfumeNoteRelationUncheckedCreateWithoutNoteInput[] No
connectOrCreate PerfumeNoteRelationCreateOrConnectWithoutNoteInput | PerfumeNoteRelationCreateOrConnectWithoutNoteInput[] No
upsert PerfumeNoteRelationUpsertWithWhereUniqueWithoutNoteInput | PerfumeNoteRelationUpsertWithWhereUniqueWithoutNoteInput[] No
createMany PerfumeNoteRelationCreateManyNoteInputEnvelope No
set PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
disconnect PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
delete PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
connect PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
update PerfumeNoteRelationUpdateWithWhereUniqueWithoutNoteInput | PerfumeNoteRelationUpdateWithWhereUniqueWithoutNoteInput[] No
updateMany PerfumeNoteRelationUpdateManyWithWhereWithoutNoteInput | PerfumeNoteRelationUpdateManyWithWhereWithoutNoteInput[] No
deleteMany PerfumeNoteRelationScalarWhereInput | PerfumeNoteRelationScalarWhereInput[] No

PerfumeNoteRelationUncheckedUpdateManyWithoutNoteNestedInput

Name Type Nullable
create PerfumeNoteRelationCreateWithoutNoteInput | PerfumeNoteRelationCreateWithoutNoteInput[] | PerfumeNoteRelationUncheckedCreateWithoutNoteInput | PerfumeNoteRelationUncheckedCreateWithoutNoteInput[] No
connectOrCreate PerfumeNoteRelationCreateOrConnectWithoutNoteInput | PerfumeNoteRelationCreateOrConnectWithoutNoteInput[] No
upsert PerfumeNoteRelationUpsertWithWhereUniqueWithoutNoteInput | PerfumeNoteRelationUpsertWithWhereUniqueWithoutNoteInput[] No
createMany PerfumeNoteRelationCreateManyNoteInputEnvelope No
set PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
disconnect PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
delete PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
connect PerfumeNoteRelationWhereUniqueInput | PerfumeNoteRelationWhereUniqueInput[] No
update PerfumeNoteRelationUpdateWithWhereUniqueWithoutNoteInput | PerfumeNoteRelationUpdateWithWhereUniqueWithoutNoteInput[] No
updateMany PerfumeNoteRelationUpdateManyWithWhereWithoutNoteInput | PerfumeNoteRelationUpdateManyWithWhereWithoutNoteInput[] No
deleteMany PerfumeNoteRelationScalarWhereInput | PerfumeNoteRelationScalarWhereInput[] No

PerfumeCreateNestedOneWithoutPerfumeNoteRelationsInput

Name Type Nullable
create PerfumeCreateWithoutPerfumeNoteRelationsInput | PerfumeUncheckedCreateWithoutPerfumeNoteRelationsInput No
connectOrCreate PerfumeCreateOrConnectWithoutPerfumeNoteRelationsInput No
connect PerfumeWhereUniqueInput No


EnumPerfumeNoteTypeFieldUpdateOperationsInput

Name Type Nullable
set PerfumeNoteType No



PerfumeCreateNestedOneWithoutWishlistNotificationsInput

Name Type Nullable
create PerfumeCreateWithoutWishlistNotificationsInput | PerfumeUncheckedCreateWithoutWishlistNotificationsInput No
connectOrCreate PerfumeCreateOrConnectWithoutWishlistNotificationsInput No
connect PerfumeWhereUniqueInput No

UserCreateNestedOneWithoutWishlistNotificationsInput

Name Type Nullable
create UserCreateWithoutWishlistNotificationsInput | UserUncheckedCreateWithoutWishlistNotificationsInput No
connectOrCreate UserCreateOrConnectWithoutWishlistNotificationsInput No
connect UserWhereUniqueInput No



UserCreateNestedOneWithoutTraderFeedbackReceivedInput

Name Type Nullable
create UserCreateWithoutTraderFeedbackReceivedInput | UserUncheckedCreateWithoutTraderFeedbackReceivedInput No
connectOrCreate UserCreateOrConnectWithoutTraderFeedbackReceivedInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutTraderFeedbackLeftInput

Name Type Nullable
create UserCreateWithoutTraderFeedbackLeftInput | UserUncheckedCreateWithoutTraderFeedbackLeftInput No
connectOrCreate UserCreateOrConnectWithoutTraderFeedbackLeftInput No
connect UserWhereUniqueInput No

IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No



UserCreateNestedOneWithoutSecurityAuditLogInput

Name Type Nullable
create UserCreateWithoutSecurityAuditLogInput | UserUncheckedCreateWithoutSecurityAuditLogInput No
connectOrCreate UserCreateOrConnectWithoutSecurityAuditLogInput No
connect UserWhereUniqueInput No

EnumSecurityAuditActionFieldUpdateOperationsInput

Name Type Nullable
set SecurityAuditAction No

EnumSecurityAuditSeverityFieldUpdateOperationsInput

Name Type Nullable
set SecurityAuditSeverity No


PerfumeCreateNestedOneWithoutUserAlertInput

Name Type Nullable
create PerfumeCreateWithoutUserAlertInput | PerfumeUncheckedCreateWithoutUserAlertInput No
connectOrCreate PerfumeCreateOrConnectWithoutUserAlertInput No
connect PerfumeWhereUniqueInput No

UserCreateNestedOneWithoutUserAlertInput

Name Type Nullable
create UserCreateWithoutUserAlertInput | UserUncheckedCreateWithoutUserAlertInput No
connectOrCreate UserCreateOrConnectWithoutUserAlertInput No
connect UserWhereUniqueInput No

EnumAlertTypeFieldUpdateOperationsInput

Name Type Nullable
set AlertType No

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes



UserCreateNestedOneWithoutAlertPreferencesInput

Name Type Nullable
create UserCreateWithoutAlertPreferencesInput | UserUncheckedCreateWithoutAlertPreferencesInput No
connectOrCreate UserCreateOrConnectWithoutAlertPreferencesInput No
connect UserWhereUniqueInput No


UserCreateNestedOneWithoutPendingSubmissionsInput

Name Type Nullable
create UserCreateWithoutPendingSubmissionsInput | UserUncheckedCreateWithoutPendingSubmissionsInput No
connectOrCreate UserCreateOrConnectWithoutPendingSubmissionsInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutReviewedSubmissionsInput

Name Type Nullable
create UserCreateWithoutReviewedSubmissionsInput | UserUncheckedCreateWithoutReviewedSubmissionsInput No
connectOrCreate UserCreateOrConnectWithoutReviewedSubmissionsInput No
connect UserWhereUniqueInput No

EnumPendingSubmissionTypeFieldUpdateOperationsInput

Name Type Nullable
set PendingSubmissionType No

EnumPendingSubmissionStatusFieldUpdateOperationsInput

Name Type Nullable
set PendingSubmissionStatus No



UserCreateNestedOneWithoutTraderContactMessagesSentInput

Name Type Nullable
create UserCreateWithoutTraderContactMessagesSentInput | UserUncheckedCreateWithoutTraderContactMessagesSentInput No
connectOrCreate UserCreateOrConnectWithoutTraderContactMessagesSentInput No
connect UserWhereUniqueInput No




NestedStringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableFilter | Null Yes

NestedDateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No


NestedStringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No





NestedBoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No



NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No


NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes



NestedIntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No





NestedJsonNullableFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
mode QueryMode | EnumQueryModeFieldRefInput No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
array_contains Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No


NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes


NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No





NestedJsonFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
mode QueryMode | EnumQueryModeFieldRefInput No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
array_contains Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No

SecurityAuditLogCreateWithoutUserInput

Name Type Nullable
id String No
action SecurityAuditAction No
severity SecurityAuditSeverity No
resource String | Null Yes
resourceId String | Null Yes
ipAddress String | Null Yes
userAgent String | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No

SecurityAuditLogUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
action SecurityAuditAction No
severity SecurityAuditSeverity No
resource String | Null Yes
resourceId String | Null Yes
ipAddress String | Null Yes
userAgent String | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No

SecurityAuditLogCreateOrConnectWithoutUserInput

Name Type Nullable
where SecurityAuditLogWhereUniqueInput No
create SecurityAuditLogCreateWithoutUserInput | SecurityAuditLogUncheckedCreateWithoutUserInput No

SecurityAuditLogCreateManyUserInputEnvelope

Name Type Nullable
data SecurityAuditLogCreateManyUserInput | SecurityAuditLogCreateManyUserInput[] No
skipDuplicates Boolean No

UserAlertCreateWithoutUserInput

Name Type Nullable
id String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
readAt DateTime | Null Yes
dismissedAt DateTime | Null Yes
Perfume PerfumeCreateNestedOneWithoutUserAlertInput No

UserAlertUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
perfumeId String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
readAt DateTime | Null Yes
dismissedAt DateTime | Null Yes

UserAlertCreateOrConnectWithoutUserInput

Name Type Nullable
where UserAlertWhereUniqueInput No
create UserAlertCreateWithoutUserInput | UserAlertUncheckedCreateWithoutUserInput No

UserAlertCreateManyUserInputEnvelope

Name Type Nullable
data UserAlertCreateManyUserInput | UserAlertCreateManyUserInput[] No
skipDuplicates Boolean No

UserAlertPreferencesCreateWithoutUserInput

Name Type Nullable
id String No
wishlistAlertsEnabled Boolean No
decantAlertsEnabled Boolean No
emailWishlistAlerts Boolean No
emailDecantAlerts Boolean No
maxAlerts Int No

UserAlertPreferencesUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
wishlistAlertsEnabled Boolean No
decantAlertsEnabled Boolean No
emailWishlistAlerts Boolean No
emailDecantAlerts Boolean No
maxAlerts Int No

UserAlertPreferencesCreateOrConnectWithoutUserInput

Name Type Nullable
where UserAlertPreferencesWhereUniqueInput No
create UserAlertPreferencesCreateWithoutUserInput | UserAlertPreferencesUncheckedCreateWithoutUserInput No

UserPerfumeCreateWithoutUserInput

Name Type Nullable
id String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No
perfume PerfumeCreateNestedOneWithoutUserPerfumeInput No
comments UserPerfumeCommentCreateNestedManyWithoutUserPerfumeInput No

UserPerfumeUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
perfumeId String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No
comments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserPerfumeInput No

UserPerfumeCreateOrConnectWithoutUserInput

Name Type Nullable
where UserPerfumeWhereUniqueInput No
create UserPerfumeCreateWithoutUserInput | UserPerfumeUncheckedCreateWithoutUserInput No

UserPerfumeCreateManyUserInputEnvelope

Name Type Nullable
data UserPerfumeCreateManyUserInput | UserPerfumeCreateManyUserInput[] No
skipDuplicates Boolean No

UserPerfumeCommentCreateWithoutUserInput

Name Type Nullable
id String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No
perfume PerfumeCreateNestedOneWithoutUserPerfumeCommentsInput No
userPerfume UserPerfumeCreateNestedOneWithoutCommentsInput No

UserPerfumeCommentUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
perfumeId String No
userPerfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No

UserPerfumeCommentCreateOrConnectWithoutUserInput

Name Type Nullable
where UserPerfumeCommentWhereUniqueInput No
create UserPerfumeCommentCreateWithoutUserInput | UserPerfumeCommentUncheckedCreateWithoutUserInput No

UserPerfumeCommentCreateManyUserInputEnvelope

Name Type Nullable
data UserPerfumeCommentCreateManyUserInput | UserPerfumeCommentCreateManyUserInput[] No
skipDuplicates Boolean No

UserPerfumeRatingCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
gender Int | Null Yes
longevity Int | Null Yes
overall Int | Null Yes
priceValue Int | Null Yes
sillage Int | Null Yes
updatedAt DateTime No
perfume PerfumeCreateNestedOneWithoutUserPerfumeRatingInput No

UserPerfumeRatingUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
perfumeId String No
createdAt DateTime No
gender Int | Null Yes
longevity Int | Null Yes
overall Int | Null Yes
priceValue Int | Null Yes
sillage Int | Null Yes
updatedAt DateTime No

UserPerfumeRatingCreateOrConnectWithoutUserInput

Name Type Nullable
where UserPerfumeRatingWhereUniqueInput No
create UserPerfumeRatingCreateWithoutUserInput | UserPerfumeRatingUncheckedCreateWithoutUserInput No

UserPerfumeRatingCreateManyUserInputEnvelope

Name Type Nullable
data UserPerfumeRatingCreateManyUserInput | UserPerfumeRatingCreateManyUserInput[] No
skipDuplicates Boolean No

UserPerfumeReviewCreateWithoutUserInput

Name Type Nullable
id String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No
perfume PerfumeCreateNestedOneWithoutUserPerfumeReviewInput No

UserPerfumeReviewUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
perfumeId String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No

UserPerfumeReviewCreateOrConnectWithoutUserInput

Name Type Nullable
where UserPerfumeReviewWhereUniqueInput No
create UserPerfumeReviewCreateWithoutUserInput | UserPerfumeReviewUncheckedCreateWithoutUserInput No

UserPerfumeReviewCreateManyUserInputEnvelope

Name Type Nullable
data UserPerfumeReviewCreateManyUserInput | UserPerfumeReviewCreateManyUserInput[] No
skipDuplicates Boolean No

UserPerfumeWishlistCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No
perfume PerfumeCreateNestedOneWithoutUserPerfumeWishlistInput No

UserPerfumeWishlistUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
perfumeId String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No

UserPerfumeWishlistCreateOrConnectWithoutUserInput

Name Type Nullable
where UserPerfumeWishlistWhereUniqueInput No
create UserPerfumeWishlistCreateWithoutUserInput | UserPerfumeWishlistUncheckedCreateWithoutUserInput No

UserPerfumeWishlistCreateManyUserInputEnvelope

Name Type Nullable
data UserPerfumeWishlistCreateManyUserInput | UserPerfumeWishlistCreateManyUserInput[] No
skipDuplicates Boolean No

WishlistNotificationCreateWithoutUserInput

Name Type Nullable
id String No
notifiedAt DateTime No
updatedAt DateTime No
perfume PerfumeCreateNestedOneWithoutWishlistNotificationsInput No

WishlistNotificationUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
perfumeId String No
notifiedAt DateTime No
updatedAt DateTime No

WishlistNotificationCreateOrConnectWithoutUserInput

Name Type Nullable
where WishlistNotificationWhereUniqueInput No
create WishlistNotificationCreateWithoutUserInput | WishlistNotificationUncheckedCreateWithoutUserInput No

WishlistNotificationCreateManyUserInputEnvelope

Name Type Nullable
data WishlistNotificationCreateManyUserInput | WishlistNotificationCreateManyUserInput[] No
skipDuplicates Boolean No

TraderFeedbackCreateWithoutTraderInput

Name Type Nullable
id String No
rating Int No
comment String | Null Yes
createdAt DateTime No
updatedAt DateTime No
reviewer UserCreateNestedOneWithoutTraderFeedbackLeftInput No

TraderFeedbackUncheckedCreateWithoutTraderInput

Name Type Nullable
id String No
reviewerId String No
rating Int No
comment String | Null Yes
createdAt DateTime No
updatedAt DateTime No

TraderFeedbackCreateOrConnectWithoutTraderInput

Name Type Nullable
where TraderFeedbackWhereUniqueInput No
create TraderFeedbackCreateWithoutTraderInput | TraderFeedbackUncheckedCreateWithoutTraderInput No

TraderFeedbackCreateManyTraderInputEnvelope

Name Type Nullable
data TraderFeedbackCreateManyTraderInput | TraderFeedbackCreateManyTraderInput[] No
skipDuplicates Boolean No

TraderFeedbackCreateWithoutReviewerInput

Name Type Nullable
id String No
rating Int No
comment String | Null Yes
createdAt DateTime No
updatedAt DateTime No
trader UserCreateNestedOneWithoutTraderFeedbackReceivedInput No

TraderFeedbackUncheckedCreateWithoutReviewerInput

Name Type Nullable
id String No
traderId String No
rating Int No
comment String | Null Yes
createdAt DateTime No
updatedAt DateTime No

TraderFeedbackCreateOrConnectWithoutReviewerInput

Name Type Nullable
where TraderFeedbackWhereUniqueInput No
create TraderFeedbackCreateWithoutReviewerInput | TraderFeedbackUncheckedCreateWithoutReviewerInput No

TraderFeedbackCreateManyReviewerInputEnvelope

Name Type Nullable
data TraderFeedbackCreateManyReviewerInput | TraderFeedbackCreateManyReviewerInput[] No
skipDuplicates Boolean No

PendingSubmissionCreateWithoutSubmittedByUserInput

Name Type Nullable
id String No
submissionType PendingSubmissionType No
status PendingSubmissionStatus No
submissionData JsonNullValueInput | Json No
adminNotes String | Null Yes
reviewedAt DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
reviewedByUser UserCreateNestedOneWithoutReviewedSubmissionsInput No

PendingSubmissionUncheckedCreateWithoutSubmittedByUserInput

Name Type Nullable
id String No
submissionType PendingSubmissionType No
status PendingSubmissionStatus No
submissionData JsonNullValueInput | Json No
adminNotes String | Null Yes
reviewedBy String | Null Yes
reviewedAt DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No

PendingSubmissionCreateOrConnectWithoutSubmittedByUserInput

Name Type Nullable
where PendingSubmissionWhereUniqueInput No
create PendingSubmissionCreateWithoutSubmittedByUserInput | PendingSubmissionUncheckedCreateWithoutSubmittedByUserInput No

PendingSubmissionCreateManySubmittedByUserInputEnvelope

Name Type Nullable
data PendingSubmissionCreateManySubmittedByUserInput | PendingSubmissionCreateManySubmittedByUserInput[] No
skipDuplicates Boolean No

PendingSubmissionCreateWithoutReviewedByUserInput

Name Type Nullable
id String No
submissionType PendingSubmissionType No
status PendingSubmissionStatus No
submissionData JsonNullValueInput | Json No
adminNotes String | Null Yes
reviewedAt DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No
submittedByUser UserCreateNestedOneWithoutPendingSubmissionsInput No

PendingSubmissionUncheckedCreateWithoutReviewedByUserInput

Name Type Nullable
id String No
submissionType PendingSubmissionType No
submittedBy String | Null Yes
status PendingSubmissionStatus No
submissionData JsonNullValueInput | Json No
adminNotes String | Null Yes
reviewedAt DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No

PendingSubmissionCreateOrConnectWithoutReviewedByUserInput

Name Type Nullable
where PendingSubmissionWhereUniqueInput No
create PendingSubmissionCreateWithoutReviewedByUserInput | PendingSubmissionUncheckedCreateWithoutReviewedByUserInput No

PendingSubmissionCreateManyReviewedByUserInputEnvelope

Name Type Nullable
data PendingSubmissionCreateManyReviewedByUserInput | PendingSubmissionCreateManyReviewedByUserInput[] No
skipDuplicates Boolean No

TraderContactMessageCreateWithoutSenderInput

Name Type Nullable
id String No
subject String | Null Yes
message String No
read Boolean No
createdAt DateTime No
recipient UserCreateNestedOneWithoutTraderContactMessagesReceivedInput No

TraderContactMessageUncheckedCreateWithoutSenderInput

Name Type Nullable
id String No
recipientId String No
subject String | Null Yes
message String No
read Boolean No
createdAt DateTime No

TraderContactMessageCreateOrConnectWithoutSenderInput

Name Type Nullable
where TraderContactMessageWhereUniqueInput No
create TraderContactMessageCreateWithoutSenderInput | TraderContactMessageUncheckedCreateWithoutSenderInput No

TraderContactMessageCreateManySenderInputEnvelope

Name Type Nullable
data TraderContactMessageCreateManySenderInput | TraderContactMessageCreateManySenderInput[] No
skipDuplicates Boolean No

TraderContactMessageCreateWithoutRecipientInput

Name Type Nullable
id String No
subject String | Null Yes
message String No
read Boolean No
createdAt DateTime No
sender UserCreateNestedOneWithoutTraderContactMessagesSentInput No

TraderContactMessageUncheckedCreateWithoutRecipientInput

Name Type Nullable
id String No
senderId String No
subject String | Null Yes
message String No
read Boolean No
createdAt DateTime No

TraderContactMessageCreateOrConnectWithoutRecipientInput

Name Type Nullable
where TraderContactMessageWhereUniqueInput No
create TraderContactMessageCreateWithoutRecipientInput | TraderContactMessageUncheckedCreateWithoutRecipientInput No

TraderContactMessageCreateManyRecipientInputEnvelope

Name Type Nullable
data TraderContactMessageCreateManyRecipientInput | TraderContactMessageCreateManyRecipientInput[] No
skipDuplicates Boolean No


SecurityAuditLogUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where SecurityAuditLogWhereUniqueInput No
data SecurityAuditLogUpdateWithoutUserInput | SecurityAuditLogUncheckedUpdateWithoutUserInput No

SecurityAuditLogUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where SecurityAuditLogScalarWhereInput No
data SecurityAuditLogUpdateManyMutationInput | SecurityAuditLogUncheckedUpdateManyWithoutUserInput No

SecurityAuditLogScalarWhereInput

Name Type Nullable
AND SecurityAuditLogScalarWhereInput | SecurityAuditLogScalarWhereInput[] No
OR SecurityAuditLogScalarWhereInput[] No
NOT SecurityAuditLogScalarWhereInput | SecurityAuditLogScalarWhereInput[] No
id StringFilter | String No
userId StringNullableFilter | String | Null Yes
action EnumSecurityAuditActionFilter | SecurityAuditAction No
severity EnumSecurityAuditSeverityFilter | SecurityAuditSeverity No
resource StringNullableFilter | String | Null Yes
resourceId StringNullableFilter | String | Null Yes
ipAddress StringNullableFilter | String | Null Yes
userAgent StringNullableFilter | String | Null Yes
details JsonNullableFilter No
metadata JsonNullableFilter No
createdAt DateTimeFilter | DateTime No


UserAlertUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where UserAlertWhereUniqueInput No
data UserAlertUpdateWithoutUserInput | UserAlertUncheckedUpdateWithoutUserInput No

UserAlertUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where UserAlertScalarWhereInput No
data UserAlertUpdateManyMutationInput | UserAlertUncheckedUpdateManyWithoutUserInput No

UserAlertScalarWhereInput

Name Type Nullable
AND UserAlertScalarWhereInput | UserAlertScalarWhereInput[] No
OR UserAlertScalarWhereInput[] No
NOT UserAlertScalarWhereInput | UserAlertScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
alertType EnumAlertTypeFilter | AlertType No
title StringFilter | String No
message StringFilter | String No
isRead BoolFilter | Boolean No
isDismissed BoolFilter | Boolean No
metadata JsonNullableFilter No
createdAt DateTimeFilter | DateTime No
readAt DateTimeNullableFilter | DateTime | Null Yes
dismissedAt DateTimeNullableFilter | DateTime | Null Yes


UserAlertPreferencesUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where UserAlertPreferencesWhereInput No
data UserAlertPreferencesUpdateWithoutUserInput | UserAlertPreferencesUncheckedUpdateWithoutUserInput No

UserAlertPreferencesUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
wishlistAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
decantAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
emailWishlistAlerts Boolean | BoolFieldUpdateOperationsInput No
emailDecantAlerts Boolean | BoolFieldUpdateOperationsInput No
maxAlerts Int | IntFieldUpdateOperationsInput No

UserAlertPreferencesUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
wishlistAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
decantAlertsEnabled Boolean | BoolFieldUpdateOperationsInput No
emailWishlistAlerts Boolean | BoolFieldUpdateOperationsInput No
emailDecantAlerts Boolean | BoolFieldUpdateOperationsInput No
maxAlerts Int | IntFieldUpdateOperationsInput No


UserPerfumeUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where UserPerfumeWhereUniqueInput No
data UserPerfumeUpdateWithoutUserInput | UserPerfumeUncheckedUpdateWithoutUserInput No

UserPerfumeUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where UserPerfumeScalarWhereInput No
data UserPerfumeUpdateManyMutationInput | UserPerfumeUncheckedUpdateManyWithoutUserInput No

UserPerfumeScalarWhereInput

Name Type Nullable
AND UserPerfumeScalarWhereInput | UserPerfumeScalarWhereInput[] No
OR UserPerfumeScalarWhereInput[] No
NOT UserPerfumeScalarWhereInput | UserPerfumeScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
amount StringFilter | String No
available StringFilter | String No
price StringNullableFilter | String | Null Yes
placeOfPurchase StringNullableFilter | String | Null Yes
tradePrice StringNullableFilter | String | Null Yes
tradePreference EnumTradePreferenceFilter | TradePreference No
tradeOnly BoolFilter | Boolean No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
type EnumPerfumeTypeFilter | PerfumeType No


UserPerfumeCommentUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where UserPerfumeCommentWhereUniqueInput No
data UserPerfumeCommentUpdateWithoutUserInput | UserPerfumeCommentUncheckedUpdateWithoutUserInput No

UserPerfumeCommentUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where UserPerfumeCommentScalarWhereInput No
data UserPerfumeCommentUpdateManyMutationInput | UserPerfumeCommentUncheckedUpdateManyWithoutUserInput No

UserPerfumeCommentScalarWhereInput

Name Type Nullable
AND UserPerfumeCommentScalarWhereInput | UserPerfumeCommentScalarWhereInput[] No
OR UserPerfumeCommentScalarWhereInput[] No
NOT UserPerfumeCommentScalarWhereInput | UserPerfumeCommentScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
userPerfumeId StringFilter | String No
comment StringFilter | String No
isPublic BoolFilter | Boolean No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No


UserPerfumeRatingUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where UserPerfumeRatingWhereUniqueInput No
data UserPerfumeRatingUpdateWithoutUserInput | UserPerfumeRatingUncheckedUpdateWithoutUserInput No

UserPerfumeRatingUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where UserPerfumeRatingScalarWhereInput No
data UserPerfumeRatingUpdateManyMutationInput | UserPerfumeRatingUncheckedUpdateManyWithoutUserInput No

UserPerfumeRatingScalarWhereInput

Name Type Nullable
AND UserPerfumeRatingScalarWhereInput | UserPerfumeRatingScalarWhereInput[] No
OR UserPerfumeRatingScalarWhereInput[] No
NOT UserPerfumeRatingScalarWhereInput | UserPerfumeRatingScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
createdAt DateTimeFilter | DateTime No
gender IntNullableFilter | Int | Null Yes
longevity IntNullableFilter | Int | Null Yes
overall IntNullableFilter | Int | Null Yes
priceValue IntNullableFilter | Int | Null Yes
sillage IntNullableFilter | Int | Null Yes
updatedAt DateTimeFilter | DateTime No


UserPerfumeReviewUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where UserPerfumeReviewWhereUniqueInput No
data UserPerfumeReviewUpdateWithoutUserInput | UserPerfumeReviewUncheckedUpdateWithoutUserInput No

UserPerfumeReviewUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where UserPerfumeReviewScalarWhereInput No
data UserPerfumeReviewUpdateManyMutationInput | UserPerfumeReviewUncheckedUpdateManyWithoutUserInput No

UserPerfumeReviewScalarWhereInput

Name Type Nullable
AND UserPerfumeReviewScalarWhereInput | UserPerfumeReviewScalarWhereInput[] No
OR UserPerfumeReviewScalarWhereInput[] No
NOT UserPerfumeReviewScalarWhereInput | UserPerfumeReviewScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
review StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
isApproved BoolFilter | Boolean No


UserPerfumeWishlistUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where UserPerfumeWishlistWhereUniqueInput No
data UserPerfumeWishlistUpdateWithoutUserInput | UserPerfumeWishlistUncheckedUpdateWithoutUserInput No

UserPerfumeWishlistUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where UserPerfumeWishlistScalarWhereInput No
data UserPerfumeWishlistUpdateManyMutationInput | UserPerfumeWishlistUncheckedUpdateManyWithoutUserInput No

UserPerfumeWishlistScalarWhereInput

Name Type Nullable
AND UserPerfumeWishlistScalarWhereInput | UserPerfumeWishlistScalarWhereInput[] No
OR UserPerfumeWishlistScalarWhereInput[] No
NOT UserPerfumeWishlistScalarWhereInput | UserPerfumeWishlistScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
isPublic BoolFilter | Boolean No


WishlistNotificationUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where WishlistNotificationWhereUniqueInput No
data WishlistNotificationUpdateWithoutUserInput | WishlistNotificationUncheckedUpdateWithoutUserInput No

WishlistNotificationUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where WishlistNotificationScalarWhereInput No
data WishlistNotificationUpdateManyMutationInput | WishlistNotificationUncheckedUpdateManyWithoutUserInput No

WishlistNotificationScalarWhereInput

Name Type Nullable
AND WishlistNotificationScalarWhereInput | WishlistNotificationScalarWhereInput[] No
OR WishlistNotificationScalarWhereInput[] No
NOT WishlistNotificationScalarWhereInput | WishlistNotificationScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
perfumeId StringFilter | String No
notifiedAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No


TraderFeedbackUpdateWithWhereUniqueWithoutTraderInput

Name Type Nullable
where TraderFeedbackWhereUniqueInput No
data TraderFeedbackUpdateWithoutTraderInput | TraderFeedbackUncheckedUpdateWithoutTraderInput No

TraderFeedbackUpdateManyWithWhereWithoutTraderInput

Name Type Nullable
where TraderFeedbackScalarWhereInput No
data TraderFeedbackUpdateManyMutationInput | TraderFeedbackUncheckedUpdateManyWithoutTraderInput No

TraderFeedbackScalarWhereInput

Name Type Nullable
AND TraderFeedbackScalarWhereInput | TraderFeedbackScalarWhereInput[] No
OR TraderFeedbackScalarWhereInput[] No
NOT TraderFeedbackScalarWhereInput | TraderFeedbackScalarWhereInput[] No
id StringFilter | String No
traderId StringFilter | String No
reviewerId StringFilter | String No
rating IntFilter | Int No
comment StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No


TraderFeedbackUpdateWithWhereUniqueWithoutReviewerInput

Name Type Nullable
where TraderFeedbackWhereUniqueInput No
data TraderFeedbackUpdateWithoutReviewerInput | TraderFeedbackUncheckedUpdateWithoutReviewerInput No

TraderFeedbackUpdateManyWithWhereWithoutReviewerInput

Name Type Nullable
where TraderFeedbackScalarWhereInput No
data TraderFeedbackUpdateManyMutationInput | TraderFeedbackUncheckedUpdateManyWithoutReviewerInput No


PendingSubmissionUpdateWithWhereUniqueWithoutSubmittedByUserInput

Name Type Nullable
where PendingSubmissionWhereUniqueInput No
data PendingSubmissionUpdateWithoutSubmittedByUserInput | PendingSubmissionUncheckedUpdateWithoutSubmittedByUserInput No

PendingSubmissionUpdateManyWithWhereWithoutSubmittedByUserInput

Name Type Nullable
where PendingSubmissionScalarWhereInput No
data PendingSubmissionUpdateManyMutationInput | PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserInput No

PendingSubmissionScalarWhereInput

Name Type Nullable
AND PendingSubmissionScalarWhereInput | PendingSubmissionScalarWhereInput[] No
OR PendingSubmissionScalarWhereInput[] No
NOT PendingSubmissionScalarWhereInput | PendingSubmissionScalarWhereInput[] No
id StringFilter | String No
submissionType EnumPendingSubmissionTypeFilter | PendingSubmissionType No
submittedBy StringNullableFilter | String | Null Yes
status EnumPendingSubmissionStatusFilter | PendingSubmissionStatus No
submissionData JsonFilter No
adminNotes StringNullableFilter | String | Null Yes
reviewedBy StringNullableFilter | String | Null Yes
reviewedAt DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No


PendingSubmissionUpdateWithWhereUniqueWithoutReviewedByUserInput

Name Type Nullable
where PendingSubmissionWhereUniqueInput No
data PendingSubmissionUpdateWithoutReviewedByUserInput | PendingSubmissionUncheckedUpdateWithoutReviewedByUserInput No

PendingSubmissionUpdateManyWithWhereWithoutReviewedByUserInput

Name Type Nullable
where PendingSubmissionScalarWhereInput No
data PendingSubmissionUpdateManyMutationInput | PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserInput No


TraderContactMessageUpdateWithWhereUniqueWithoutSenderInput

Name Type Nullable
where TraderContactMessageWhereUniqueInput No
data TraderContactMessageUpdateWithoutSenderInput | TraderContactMessageUncheckedUpdateWithoutSenderInput No

TraderContactMessageUpdateManyWithWhereWithoutSenderInput

Name Type Nullable
where TraderContactMessageScalarWhereInput No
data TraderContactMessageUpdateManyMutationInput | TraderContactMessageUncheckedUpdateManyWithoutSenderInput No

TraderContactMessageScalarWhereInput

Name Type Nullable
AND TraderContactMessageScalarWhereInput | TraderContactMessageScalarWhereInput[] No
OR TraderContactMessageScalarWhereInput[] No
NOT TraderContactMessageScalarWhereInput | TraderContactMessageScalarWhereInput[] No
id StringFilter | String No
senderId StringFilter | String No
recipientId StringFilter | String No
subject StringNullableFilter | String | Null Yes
message StringFilter | String No
read BoolFilter | Boolean No
createdAt DateTimeFilter | DateTime No


TraderContactMessageUpdateWithWhereUniqueWithoutRecipientInput

Name Type Nullable
where TraderContactMessageWhereUniqueInput No
data TraderContactMessageUpdateWithoutRecipientInput | TraderContactMessageUncheckedUpdateWithoutRecipientInput No

TraderContactMessageUpdateManyWithWhereWithoutRecipientInput

Name Type Nullable
where TraderContactMessageScalarWhereInput No
data TraderContactMessageUpdateManyMutationInput | TraderContactMessageUncheckedUpdateManyWithoutRecipientInput No

PerfumeCreateWithoutPerfumeHouseInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateWithoutPerfumeHouseInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeCreateOrConnectWithoutPerfumeHouseInput

Name Type Nullable
where PerfumeWhereUniqueInput No
create PerfumeCreateWithoutPerfumeHouseInput | PerfumeUncheckedCreateWithoutPerfumeHouseInput No

PerfumeCreateManyPerfumeHouseInputEnvelope

Name Type Nullable
data PerfumeCreateManyPerfumeHouseInput | PerfumeCreateManyPerfumeHouseInput[] No
skipDuplicates Boolean No


PerfumeUpdateWithWhereUniqueWithoutPerfumeHouseInput

Name Type Nullable
where PerfumeWhereUniqueInput No
data PerfumeUpdateWithoutPerfumeHouseInput | PerfumeUncheckedUpdateWithoutPerfumeHouseInput No

PerfumeUpdateManyWithWhereWithoutPerfumeHouseInput

Name Type Nullable
where PerfumeScalarWhereInput No
data PerfumeUpdateManyMutationInput | PerfumeUncheckedUpdateManyWithoutPerfumeHouseInput No

PerfumeScalarWhereInput

Name Type Nullable
AND PerfumeScalarWhereInput | PerfumeScalarWhereInput[] No
OR PerfumeScalarWhereInput[] No
NOT PerfumeScalarWhereInput | PerfumeScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
perfumeHouseId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
slug StringFilter | String No

PerfumeHouseCreateWithoutPerfumesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
website String | Null Yes
country String | Null Yes
founded String | Null Yes
email String | Null Yes
phone String | Null Yes
address String | Null Yes
type HouseType No
createdAt DateTime No
updatedAt DateTime No
slug String No

PerfumeHouseUncheckedCreateWithoutPerfumesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
website String | Null Yes
country String | Null Yes
founded String | Null Yes
email String | Null Yes
phone String | Null Yes
address String | Null Yes
type HouseType No
createdAt DateTime No
updatedAt DateTime No
slug String No

PerfumeHouseCreateOrConnectWithoutPerfumesInput

Name Type Nullable
where PerfumeHouseWhereUniqueInput No
create PerfumeHouseCreateWithoutPerfumesInput | PerfumeHouseUncheckedCreateWithoutPerfumesInput No

PerfumeNoteRelationCreateWithoutPerfumeInput

Name Type Nullable
id String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No
note PerfumeNotesCreateNestedOneWithoutPerfumeNoteRelationsInput No

PerfumeNoteRelationUncheckedCreateWithoutPerfumeInput

Name Type Nullable
id String No
noteId String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No

PerfumeNoteRelationCreateOrConnectWithoutPerfumeInput

Name Type Nullable
where PerfumeNoteRelationWhereUniqueInput No
create PerfumeNoteRelationCreateWithoutPerfumeInput | PerfumeNoteRelationUncheckedCreateWithoutPerfumeInput No

PerfumeNoteRelationCreateManyPerfumeInputEnvelope

Name Type Nullable
data PerfumeNoteRelationCreateManyPerfumeInput | PerfumeNoteRelationCreateManyPerfumeInput[] No
skipDuplicates Boolean No

UserAlertCreateWithoutPerfumeInput

Name Type Nullable
id String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
readAt DateTime | Null Yes
dismissedAt DateTime | Null Yes
User UserCreateNestedOneWithoutUserAlertInput No

UserAlertUncheckedCreateWithoutPerfumeInput

Name Type Nullable
id String No
userId String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
readAt DateTime | Null Yes
dismissedAt DateTime | Null Yes

UserAlertCreateOrConnectWithoutPerfumeInput

Name Type Nullable
where UserAlertWhereUniqueInput No
create UserAlertCreateWithoutPerfumeInput | UserAlertUncheckedCreateWithoutPerfumeInput No

UserAlertCreateManyPerfumeInputEnvelope

Name Type Nullable
data UserAlertCreateManyPerfumeInput | UserAlertCreateManyPerfumeInput[] No
skipDuplicates Boolean No

UserPerfumeCreateWithoutPerfumeInput

Name Type Nullable
id String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No
user UserCreateNestedOneWithoutUserPerfumeInput No
comments UserPerfumeCommentCreateNestedManyWithoutUserPerfumeInput No

UserPerfumeUncheckedCreateWithoutPerfumeInput

Name Type Nullable
id String No
userId String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No
comments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserPerfumeInput No

UserPerfumeCreateOrConnectWithoutPerfumeInput

Name Type Nullable
where UserPerfumeWhereUniqueInput No
create UserPerfumeCreateWithoutPerfumeInput | UserPerfumeUncheckedCreateWithoutPerfumeInput No

UserPerfumeCreateManyPerfumeInputEnvelope

Name Type Nullable
data UserPerfumeCreateManyPerfumeInput | UserPerfumeCreateManyPerfumeInput[] No
skipDuplicates Boolean No

UserPerfumeCommentCreateWithoutPerfumeInput

Name Type Nullable
id String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No
user UserCreateNestedOneWithoutUserPerfumeCommentsInput No
userPerfume UserPerfumeCreateNestedOneWithoutCommentsInput No

UserPerfumeCommentUncheckedCreateWithoutPerfumeInput

Name Type Nullable
id String No
userId String No
userPerfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No

UserPerfumeCommentCreateOrConnectWithoutPerfumeInput

Name Type Nullable
where UserPerfumeCommentWhereUniqueInput No
create UserPerfumeCommentCreateWithoutPerfumeInput | UserPerfumeCommentUncheckedCreateWithoutPerfumeInput No

UserPerfumeCommentCreateManyPerfumeInputEnvelope

Name Type Nullable
data UserPerfumeCommentCreateManyPerfumeInput | UserPerfumeCommentCreateManyPerfumeInput[] No
skipDuplicates Boolean No

UserPerfumeRatingCreateWithoutPerfumeInput

Name Type Nullable
id String No
createdAt DateTime No
gender Int | Null Yes
longevity Int | Null Yes
overall Int | Null Yes
priceValue Int | Null Yes
sillage Int | Null Yes
updatedAt DateTime No
user UserCreateNestedOneWithoutUserPerfumeRatingInput No

UserPerfumeRatingUncheckedCreateWithoutPerfumeInput

Name Type Nullable
id String No
userId String No
createdAt DateTime No
gender Int | Null Yes
longevity Int | Null Yes
overall Int | Null Yes
priceValue Int | Null Yes
sillage Int | Null Yes
updatedAt DateTime No

UserPerfumeRatingCreateOrConnectWithoutPerfumeInput

Name Type Nullable
where UserPerfumeRatingWhereUniqueInput No
create UserPerfumeRatingCreateWithoutPerfumeInput | UserPerfumeRatingUncheckedCreateWithoutPerfumeInput No

UserPerfumeRatingCreateManyPerfumeInputEnvelope

Name Type Nullable
data UserPerfumeRatingCreateManyPerfumeInput | UserPerfumeRatingCreateManyPerfumeInput[] No
skipDuplicates Boolean No

UserPerfumeReviewCreateWithoutPerfumeInput

Name Type Nullable
id String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No
user UserCreateNestedOneWithoutUserPerfumeReviewInput No

UserPerfumeReviewUncheckedCreateWithoutPerfumeInput

Name Type Nullable
id String No
userId String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No

UserPerfumeReviewCreateOrConnectWithoutPerfumeInput

Name Type Nullable
where UserPerfumeReviewWhereUniqueInput No
create UserPerfumeReviewCreateWithoutPerfumeInput | UserPerfumeReviewUncheckedCreateWithoutPerfumeInput No

UserPerfumeReviewCreateManyPerfumeInputEnvelope

Name Type Nullable
data UserPerfumeReviewCreateManyPerfumeInput | UserPerfumeReviewCreateManyPerfumeInput[] No
skipDuplicates Boolean No

UserPerfumeWishlistCreateWithoutPerfumeInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No
user UserCreateNestedOneWithoutUserPerfumeWishlistInput No

UserPerfumeWishlistUncheckedCreateWithoutPerfumeInput

Name Type Nullable
id String No
userId String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No

UserPerfumeWishlistCreateOrConnectWithoutPerfumeInput

Name Type Nullable
where UserPerfumeWishlistWhereUniqueInput No
create UserPerfumeWishlistCreateWithoutPerfumeInput | UserPerfumeWishlistUncheckedCreateWithoutPerfumeInput No

UserPerfumeWishlistCreateManyPerfumeInputEnvelope

Name Type Nullable
data UserPerfumeWishlistCreateManyPerfumeInput | UserPerfumeWishlistCreateManyPerfumeInput[] No
skipDuplicates Boolean No

WishlistNotificationCreateWithoutPerfumeInput

Name Type Nullable
id String No
notifiedAt DateTime No
updatedAt DateTime No
user UserCreateNestedOneWithoutWishlistNotificationsInput No

WishlistNotificationUncheckedCreateWithoutPerfumeInput

Name Type Nullable
id String No
userId String No
notifiedAt DateTime No
updatedAt DateTime No

WishlistNotificationCreateOrConnectWithoutPerfumeInput

Name Type Nullable
where WishlistNotificationWhereUniqueInput No
create WishlistNotificationCreateWithoutPerfumeInput | WishlistNotificationUncheckedCreateWithoutPerfumeInput No

WishlistNotificationCreateManyPerfumeInputEnvelope

Name Type Nullable
data WishlistNotificationCreateManyPerfumeInput | WishlistNotificationCreateManyPerfumeInput[] No
skipDuplicates Boolean No


PerfumeHouseUpdateToOneWithWhereWithoutPerfumesInput

Name Type Nullable
where PerfumeHouseWhereInput No
data PerfumeHouseUpdateWithoutPerfumesInput | PerfumeHouseUncheckedUpdateWithoutPerfumesInput No

PerfumeHouseUpdateWithoutPerfumesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
founded String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
type HouseType | EnumHouseTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No

PerfumeHouseUncheckedUpdateWithoutPerfumesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
founded String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
type HouseType | EnumHouseTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No


PerfumeNoteRelationUpdateWithWhereUniqueWithoutPerfumeInput

Name Type Nullable
where PerfumeNoteRelationWhereUniqueInput No
data PerfumeNoteRelationUpdateWithoutPerfumeInput | PerfumeNoteRelationUncheckedUpdateWithoutPerfumeInput No

PerfumeNoteRelationUpdateManyWithWhereWithoutPerfumeInput

Name Type Nullable
where PerfumeNoteRelationScalarWhereInput No
data PerfumeNoteRelationUpdateManyMutationInput | PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeInput No

PerfumeNoteRelationScalarWhereInput

Name Type Nullable
AND PerfumeNoteRelationScalarWhereInput | PerfumeNoteRelationScalarWhereInput[] No
OR PerfumeNoteRelationScalarWhereInput[] No
NOT PerfumeNoteRelationScalarWhereInput | PerfumeNoteRelationScalarWhereInput[] No
id StringFilter | String No
perfumeId StringFilter | String No
noteId StringFilter | String No
noteType EnumPerfumeNoteTypeFilter | PerfumeNoteType No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No


UserAlertUpdateWithWhereUniqueWithoutPerfumeInput

Name Type Nullable
where UserAlertWhereUniqueInput No
data UserAlertUpdateWithoutPerfumeInput | UserAlertUncheckedUpdateWithoutPerfumeInput No

UserAlertUpdateManyWithWhereWithoutPerfumeInput

Name Type Nullable
where UserAlertScalarWhereInput No
data UserAlertUpdateManyMutationInput | UserAlertUncheckedUpdateManyWithoutPerfumeInput No


UserPerfumeUpdateWithWhereUniqueWithoutPerfumeInput

Name Type Nullable
where UserPerfumeWhereUniqueInput No
data UserPerfumeUpdateWithoutPerfumeInput | UserPerfumeUncheckedUpdateWithoutPerfumeInput No

UserPerfumeUpdateManyWithWhereWithoutPerfumeInput

Name Type Nullable
where UserPerfumeScalarWhereInput No
data UserPerfumeUpdateManyMutationInput | UserPerfumeUncheckedUpdateManyWithoutPerfumeInput No


UserPerfumeCommentUpdateWithWhereUniqueWithoutPerfumeInput

Name Type Nullable
where UserPerfumeCommentWhereUniqueInput No
data UserPerfumeCommentUpdateWithoutPerfumeInput | UserPerfumeCommentUncheckedUpdateWithoutPerfumeInput No

UserPerfumeCommentUpdateManyWithWhereWithoutPerfumeInput

Name Type Nullable
where UserPerfumeCommentScalarWhereInput No
data UserPerfumeCommentUpdateManyMutationInput | UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeInput No


UserPerfumeRatingUpdateWithWhereUniqueWithoutPerfumeInput

Name Type Nullable
where UserPerfumeRatingWhereUniqueInput No
data UserPerfumeRatingUpdateWithoutPerfumeInput | UserPerfumeRatingUncheckedUpdateWithoutPerfumeInput No

UserPerfumeRatingUpdateManyWithWhereWithoutPerfumeInput

Name Type Nullable
where UserPerfumeRatingScalarWhereInput No
data UserPerfumeRatingUpdateManyMutationInput | UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeInput No


UserPerfumeReviewUpdateWithWhereUniqueWithoutPerfumeInput

Name Type Nullable
where UserPerfumeReviewWhereUniqueInput No
data UserPerfumeReviewUpdateWithoutPerfumeInput | UserPerfumeReviewUncheckedUpdateWithoutPerfumeInput No

UserPerfumeReviewUpdateManyWithWhereWithoutPerfumeInput

Name Type Nullable
where UserPerfumeReviewScalarWhereInput No
data UserPerfumeReviewUpdateManyMutationInput | UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeInput No


UserPerfumeWishlistUpdateWithWhereUniqueWithoutPerfumeInput

Name Type Nullable
where UserPerfumeWishlistWhereUniqueInput No
data UserPerfumeWishlistUpdateWithoutPerfumeInput | UserPerfumeWishlistUncheckedUpdateWithoutPerfumeInput No

UserPerfumeWishlistUpdateManyWithWhereWithoutPerfumeInput

Name Type Nullable
where UserPerfumeWishlistScalarWhereInput No
data UserPerfumeWishlistUpdateManyMutationInput | UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeInput No


WishlistNotificationUpdateWithWhereUniqueWithoutPerfumeInput

Name Type Nullable
where WishlistNotificationWhereUniqueInput No
data WishlistNotificationUpdateWithoutPerfumeInput | WishlistNotificationUncheckedUpdateWithoutPerfumeInput No

WishlistNotificationUpdateManyWithWhereWithoutPerfumeInput

Name Type Nullable
where WishlistNotificationScalarWhereInput No
data WishlistNotificationUpdateManyMutationInput | WishlistNotificationUncheckedUpdateManyWithoutPerfumeInput No

PerfumeCreateWithoutUserPerfumeInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeHouse PerfumeHouseCreateNestedOneWithoutPerfumesInput No
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateWithoutUserPerfumeInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeCreateOrConnectWithoutUserPerfumeInput

Name Type Nullable
where PerfumeWhereUniqueInput No
create PerfumeCreateWithoutUserPerfumeInput | PerfumeUncheckedCreateWithoutUserPerfumeInput No

UserCreateWithoutUserPerfumeInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutUserPerfumeInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutUserPerfumeInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUserPerfumeInput | UserUncheckedCreateWithoutUserPerfumeInput No

UserPerfumeCommentCreateWithoutUserPerfumeInput

Name Type Nullable
id String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No
perfume PerfumeCreateNestedOneWithoutUserPerfumeCommentsInput No
user UserCreateNestedOneWithoutUserPerfumeCommentsInput No

UserPerfumeCommentUncheckedCreateWithoutUserPerfumeInput

Name Type Nullable
id String No
userId String No
perfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No

UserPerfumeCommentCreateOrConnectWithoutUserPerfumeInput

Name Type Nullable
where UserPerfumeCommentWhereUniqueInput No
create UserPerfumeCommentCreateWithoutUserPerfumeInput | UserPerfumeCommentUncheckedCreateWithoutUserPerfumeInput No

UserPerfumeCommentCreateManyUserPerfumeInputEnvelope

Name Type Nullable
data UserPerfumeCommentCreateManyUserPerfumeInput | UserPerfumeCommentCreateManyUserPerfumeInput[] No
skipDuplicates Boolean No


PerfumeUpdateToOneWithWhereWithoutUserPerfumeInput

Name Type Nullable
where PerfumeWhereInput No
data PerfumeUpdateWithoutUserPerfumeInput | PerfumeUncheckedUpdateWithoutUserPerfumeInput No

PerfumeUpdateWithoutUserPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeHouse PerfumeHouseUpdateOneWithoutPerfumesNestedInput No
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateWithoutUserPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput No


UserUpdateToOneWithWhereWithoutUserPerfumeInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutUserPerfumeInput | UserUncheckedUpdateWithoutUserPerfumeInput No

UserUpdateWithoutUserPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutUserPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No


UserPerfumeCommentUpdateWithWhereUniqueWithoutUserPerfumeInput

Name Type Nullable
where UserPerfumeCommentWhereUniqueInput No
data UserPerfumeCommentUpdateWithoutUserPerfumeInput | UserPerfumeCommentUncheckedUpdateWithoutUserPerfumeInput No

UserPerfumeCommentUpdateManyWithWhereWithoutUserPerfumeInput

Name Type Nullable
where UserPerfumeCommentScalarWhereInput No
data UserPerfumeCommentUpdateManyMutationInput | UserPerfumeCommentUncheckedUpdateManyWithoutUserPerfumeInput No

PerfumeCreateWithoutUserPerfumeRatingInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeHouse PerfumeHouseCreateNestedOneWithoutPerfumesInput No
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateWithoutUserPerfumeRatingInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeCreateOrConnectWithoutUserPerfumeRatingInput

Name Type Nullable
where PerfumeWhereUniqueInput No
create PerfumeCreateWithoutUserPerfumeRatingInput | PerfumeUncheckedCreateWithoutUserPerfumeRatingInput No

UserCreateWithoutUserPerfumeRatingInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutUserPerfumeRatingInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutUserPerfumeRatingInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUserPerfumeRatingInput | UserUncheckedCreateWithoutUserPerfumeRatingInput No


PerfumeUpdateToOneWithWhereWithoutUserPerfumeRatingInput

Name Type Nullable
where PerfumeWhereInput No
data PerfumeUpdateWithoutUserPerfumeRatingInput | PerfumeUncheckedUpdateWithoutUserPerfumeRatingInput No

PerfumeUpdateWithoutUserPerfumeRatingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeHouse PerfumeHouseUpdateOneWithoutPerfumesNestedInput No
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateWithoutUserPerfumeRatingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput No


UserUpdateToOneWithWhereWithoutUserPerfumeRatingInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutUserPerfumeRatingInput | UserUncheckedUpdateWithoutUserPerfumeRatingInput No

UserUpdateWithoutUserPerfumeRatingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutUserPerfumeRatingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

PerfumeCreateWithoutUserPerfumeReviewInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeHouse PerfumeHouseCreateNestedOneWithoutPerfumesInput No
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateWithoutUserPerfumeReviewInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeCreateOrConnectWithoutUserPerfumeReviewInput

Name Type Nullable
where PerfumeWhereUniqueInput No
create PerfumeCreateWithoutUserPerfumeReviewInput | PerfumeUncheckedCreateWithoutUserPerfumeReviewInput No

UserCreateWithoutUserPerfumeReviewInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutUserPerfumeReviewInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutUserPerfumeReviewInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUserPerfumeReviewInput | UserUncheckedCreateWithoutUserPerfumeReviewInput No


PerfumeUpdateToOneWithWhereWithoutUserPerfumeReviewInput

Name Type Nullable
where PerfumeWhereInput No
data PerfumeUpdateWithoutUserPerfumeReviewInput | PerfumeUncheckedUpdateWithoutUserPerfumeReviewInput No

PerfumeUpdateWithoutUserPerfumeReviewInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeHouse PerfumeHouseUpdateOneWithoutPerfumesNestedInput No
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateWithoutUserPerfumeReviewInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput No


UserUpdateToOneWithWhereWithoutUserPerfumeReviewInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutUserPerfumeReviewInput | UserUncheckedUpdateWithoutUserPerfumeReviewInput No

UserUpdateWithoutUserPerfumeReviewInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutUserPerfumeReviewInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

PerfumeCreateWithoutUserPerfumeWishlistInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeHouse PerfumeHouseCreateNestedOneWithoutPerfumesInput No
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateWithoutUserPerfumeWishlistInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeCreateOrConnectWithoutUserPerfumeWishlistInput

Name Type Nullable
where PerfumeWhereUniqueInput No
create PerfumeCreateWithoutUserPerfumeWishlistInput | PerfumeUncheckedCreateWithoutUserPerfumeWishlistInput No

UserCreateWithoutUserPerfumeWishlistInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutUserPerfumeWishlistInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutUserPerfumeWishlistInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUserPerfumeWishlistInput | UserUncheckedCreateWithoutUserPerfumeWishlistInput No


PerfumeUpdateToOneWithWhereWithoutUserPerfumeWishlistInput

Name Type Nullable
where PerfumeWhereInput No
data PerfumeUpdateWithoutUserPerfumeWishlistInput | PerfumeUncheckedUpdateWithoutUserPerfumeWishlistInput No

PerfumeUpdateWithoutUserPerfumeWishlistInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeHouse PerfumeHouseUpdateOneWithoutPerfumesNestedInput No
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateWithoutUserPerfumeWishlistInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput No


UserUpdateToOneWithWhereWithoutUserPerfumeWishlistInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutUserPerfumeWishlistInput | UserUncheckedUpdateWithoutUserPerfumeWishlistInput No

UserUpdateWithoutUserPerfumeWishlistInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutUserPerfumeWishlistInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

PerfumeCreateWithoutUserPerfumeCommentsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeHouse PerfumeHouseCreateNestedOneWithoutPerfumesInput No
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateWithoutUserPerfumeCommentsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeCreateOrConnectWithoutUserPerfumeCommentsInput

Name Type Nullable
where PerfumeWhereUniqueInput No
create PerfumeCreateWithoutUserPerfumeCommentsInput | PerfumeUncheckedCreateWithoutUserPerfumeCommentsInput No

UserCreateWithoutUserPerfumeCommentsInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutUserPerfumeCommentsInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutUserPerfumeCommentsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUserPerfumeCommentsInput | UserUncheckedCreateWithoutUserPerfumeCommentsInput No

UserPerfumeCreateWithoutCommentsInput

Name Type Nullable
id String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No
perfume PerfumeCreateNestedOneWithoutUserPerfumeInput No
user UserCreateNestedOneWithoutUserPerfumeInput No

UserPerfumeUncheckedCreateWithoutCommentsInput

Name Type Nullable
id String No
userId String No
perfumeId String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No

UserPerfumeCreateOrConnectWithoutCommentsInput

Name Type Nullable
where UserPerfumeWhereUniqueInput No
create UserPerfumeCreateWithoutCommentsInput | UserPerfumeUncheckedCreateWithoutCommentsInput No


PerfumeUpdateToOneWithWhereWithoutUserPerfumeCommentsInput

Name Type Nullable
where PerfumeWhereInput No
data PerfumeUpdateWithoutUserPerfumeCommentsInput | PerfumeUncheckedUpdateWithoutUserPerfumeCommentsInput No

PerfumeUpdateWithoutUserPerfumeCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeHouse PerfumeHouseUpdateOneWithoutPerfumesNestedInput No
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateWithoutUserPerfumeCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput No


UserUpdateToOneWithWhereWithoutUserPerfumeCommentsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutUserPerfumeCommentsInput | UserUncheckedUpdateWithoutUserPerfumeCommentsInput No

UserUpdateWithoutUserPerfumeCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutUserPerfumeCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No


UserPerfumeUpdateToOneWithWhereWithoutCommentsInput

Name Type Nullable
where UserPerfumeWhereInput No
data UserPerfumeUpdateWithoutCommentsInput | UserPerfumeUncheckedUpdateWithoutCommentsInput No

UserPerfumeUpdateWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutUserPerfumeNestedInput No
user UserUpdateOneRequiredWithoutUserPerfumeNestedInput No

UserPerfumeUncheckedUpdateWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No

PerfumeNoteRelationCreateWithoutNoteInput

Name Type Nullable
id String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No
perfume PerfumeCreateNestedOneWithoutPerfumeNoteRelationsInput No

PerfumeNoteRelationUncheckedCreateWithoutNoteInput

Name Type Nullable
id String No
perfumeId String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No

PerfumeNoteRelationCreateOrConnectWithoutNoteInput

Name Type Nullable
where PerfumeNoteRelationWhereUniqueInput No
create PerfumeNoteRelationCreateWithoutNoteInput | PerfumeNoteRelationUncheckedCreateWithoutNoteInput No

PerfumeNoteRelationCreateManyNoteInputEnvelope

Name Type Nullable
data PerfumeNoteRelationCreateManyNoteInput | PerfumeNoteRelationCreateManyNoteInput[] No
skipDuplicates Boolean No


PerfumeNoteRelationUpdateWithWhereUniqueWithoutNoteInput

Name Type Nullable
where PerfumeNoteRelationWhereUniqueInput No
data PerfumeNoteRelationUpdateWithoutNoteInput | PerfumeNoteRelationUncheckedUpdateWithoutNoteInput No

PerfumeNoteRelationUpdateManyWithWhereWithoutNoteInput

Name Type Nullable
where PerfumeNoteRelationScalarWhereInput No
data PerfumeNoteRelationUpdateManyMutationInput | PerfumeNoteRelationUncheckedUpdateManyWithoutNoteInput No

PerfumeCreateWithoutPerfumeNoteRelationsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeHouse PerfumeHouseCreateNestedOneWithoutPerfumesInput No
UserAlert UserAlertCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateWithoutPerfumeNoteRelationsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
UserAlert UserAlertUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeCreateOrConnectWithoutPerfumeNoteRelationsInput

Name Type Nullable
where PerfumeWhereUniqueInput No
create PerfumeCreateWithoutPerfumeNoteRelationsInput | PerfumeUncheckedCreateWithoutPerfumeNoteRelationsInput No

PerfumeNotesCreateWithoutPerfumeNoteRelationsInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
updatedAt DateTime No
perfumeOpenId String | Null Yes
perfumeHeartId String | Null Yes
perfumeCloseId String | Null Yes

PerfumeNotesUncheckedCreateWithoutPerfumeNoteRelationsInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
updatedAt DateTime No
perfumeOpenId String | Null Yes
perfumeHeartId String | Null Yes
perfumeCloseId String | Null Yes

PerfumeNotesCreateOrConnectWithoutPerfumeNoteRelationsInput

Name Type Nullable
where PerfumeNotesWhereUniqueInput No
create PerfumeNotesCreateWithoutPerfumeNoteRelationsInput | PerfumeNotesUncheckedCreateWithoutPerfumeNoteRelationsInput No


PerfumeUpdateToOneWithWhereWithoutPerfumeNoteRelationsInput

Name Type Nullable
where PerfumeWhereInput No
data PerfumeUpdateWithoutPerfumeNoteRelationsInput | PerfumeUncheckedUpdateWithoutPerfumeNoteRelationsInput No

PerfumeUpdateWithoutPerfumeNoteRelationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeHouse PerfumeHouseUpdateOneWithoutPerfumesNestedInput No
UserAlert UserAlertUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateWithoutPerfumeNoteRelationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
UserAlert UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput No


PerfumeNotesUpdateToOneWithWhereWithoutPerfumeNoteRelationsInput

Name Type Nullable
where PerfumeNotesWhereInput No
data PerfumeNotesUpdateWithoutPerfumeNoteRelationsInput | PerfumeNotesUncheckedUpdateWithoutPerfumeNoteRelationsInput No

PerfumeNotesUpdateWithoutPerfumeNoteRelationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfumeOpenId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHeartId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeCloseId String | NullableStringFieldUpdateOperationsInput | Null Yes

PerfumeNotesUncheckedUpdateWithoutPerfumeNoteRelationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfumeOpenId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHeartId String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeCloseId String | NullableStringFieldUpdateOperationsInput | Null Yes

PerfumeCreateWithoutWishlistNotificationsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeHouse PerfumeHouseCreateNestedOneWithoutPerfumesInput No
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateWithoutWishlistNotificationsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutPerfumeInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeCreateOrConnectWithoutWishlistNotificationsInput

Name Type Nullable
where PerfumeWhereUniqueInput No
create PerfumeCreateWithoutWishlistNotificationsInput | PerfumeUncheckedCreateWithoutWishlistNotificationsInput No

UserCreateWithoutWishlistNotificationsInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutWishlistNotificationsInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutWishlistNotificationsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutWishlistNotificationsInput | UserUncheckedCreateWithoutWishlistNotificationsInput No


PerfumeUpdateToOneWithWhereWithoutWishlistNotificationsInput

Name Type Nullable
where PerfumeWhereInput No
data PerfumeUpdateWithoutWishlistNotificationsInput | PerfumeUncheckedUpdateWithoutWishlistNotificationsInput No

PerfumeUpdateWithoutWishlistNotificationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeHouse PerfumeHouseUpdateOneWithoutPerfumesNestedInput No
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateWithoutWishlistNotificationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput No


UserUpdateToOneWithWhereWithoutWishlistNotificationsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutWishlistNotificationsInput | UserUncheckedUpdateWithoutWishlistNotificationsInput No

UserUpdateWithoutWishlistNotificationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutWishlistNotificationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

UserCreateWithoutTraderFeedbackReceivedInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutTraderFeedbackReceivedInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutTraderFeedbackReceivedInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTraderFeedbackReceivedInput | UserUncheckedCreateWithoutTraderFeedbackReceivedInput No

UserCreateWithoutTraderFeedbackLeftInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutTraderFeedbackLeftInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutTraderFeedbackLeftInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTraderFeedbackLeftInput | UserUncheckedCreateWithoutTraderFeedbackLeftInput No


UserUpdateToOneWithWhereWithoutTraderFeedbackReceivedInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutTraderFeedbackReceivedInput | UserUncheckedUpdateWithoutTraderFeedbackReceivedInput No

UserUpdateWithoutTraderFeedbackReceivedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutTraderFeedbackReceivedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No


UserUpdateToOneWithWhereWithoutTraderFeedbackLeftInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutTraderFeedbackLeftInput | UserUncheckedUpdateWithoutTraderFeedbackLeftInput No

UserUpdateWithoutTraderFeedbackLeftInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutTraderFeedbackLeftInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

UserCreateWithoutSecurityAuditLogInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutSecurityAuditLogInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutSecurityAuditLogInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSecurityAuditLogInput | UserUncheckedCreateWithoutSecurityAuditLogInput No


UserUpdateToOneWithWhereWithoutSecurityAuditLogInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutSecurityAuditLogInput | UserUncheckedUpdateWithoutSecurityAuditLogInput No

UserUpdateWithoutSecurityAuditLogInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutSecurityAuditLogInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

PerfumeCreateWithoutUserAlertInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeHouse PerfumeHouseCreateNestedOneWithoutPerfumesInput No
perfumeNoteRelations PerfumeNoteRelationCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutPerfumeInput No

PerfumeUncheckedCreateWithoutUserAlertInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
perfumeHouseId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No
perfumeNoteRelations PerfumeNoteRelationUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfume UserPerfumeUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutPerfumeInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutPerfumeInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutPerfumeInput No

PerfumeCreateOrConnectWithoutUserAlertInput

Name Type Nullable
where PerfumeWhereUniqueInput No
create PerfumeCreateWithoutUserAlertInput | PerfumeUncheckedCreateWithoutUserAlertInput No

UserCreateWithoutUserAlertInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutUserAlertInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutUserAlertInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUserAlertInput | UserUncheckedCreateWithoutUserAlertInput No


PerfumeUpdateToOneWithWhereWithoutUserAlertInput

Name Type Nullable
where PerfumeWhereInput No
data PerfumeUpdateWithoutUserAlertInput | PerfumeUncheckedUpdateWithoutUserAlertInput No

PerfumeUpdateWithoutUserAlertInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeHouse PerfumeHouseUpdateOneWithoutPerfumesNestedInput No
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateWithoutUserAlertInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
perfumeHouseId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput No


UserUpdateToOneWithWhereWithoutUserAlertInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutUserAlertInput | UserUncheckedUpdateWithoutUserAlertInput No

UserUpdateWithoutUserAlertInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutUserAlertInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

UserCreateWithoutAlertPreferencesInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutAlertPreferencesInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutAlertPreferencesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAlertPreferencesInput | UserUncheckedCreateWithoutAlertPreferencesInput No


UserUpdateToOneWithWhereWithoutAlertPreferencesInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutAlertPreferencesInput | UserUncheckedUpdateWithoutAlertPreferencesInput No

UserUpdateWithoutAlertPreferencesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutAlertPreferencesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

UserCreateWithoutPendingSubmissionsInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutPendingSubmissionsInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutPendingSubmissionsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPendingSubmissionsInput | UserUncheckedCreateWithoutPendingSubmissionsInput No

UserCreateWithoutReviewedSubmissionsInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutReviewedSubmissionsInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutReviewedSubmissionsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutReviewedSubmissionsInput | UserUncheckedCreateWithoutReviewedSubmissionsInput No


UserUpdateToOneWithWhereWithoutPendingSubmissionsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutPendingSubmissionsInput | UserUncheckedUpdateWithoutPendingSubmissionsInput No

UserUpdateWithoutPendingSubmissionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutPendingSubmissionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No


UserUpdateToOneWithWhereWithoutReviewedSubmissionsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutReviewedSubmissionsInput | UserUncheckedUpdateWithoutReviewedSubmissionsInput No

UserUpdateWithoutReviewedSubmissionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutReviewedSubmissionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No

UserCreateWithoutTraderContactMessagesSentInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesReceived TraderContactMessageCreateNestedManyWithoutRecipientInput No

UserUncheckedCreateWithoutTraderContactMessagesSentInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesReceived TraderContactMessageUncheckedCreateNestedManyWithoutRecipientInput No

UserCreateOrConnectWithoutTraderContactMessagesSentInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTraderContactMessagesSentInput | UserUncheckedCreateWithoutTraderContactMessagesSentInput No

UserCreateWithoutTraderContactMessagesReceivedInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogCreateNestedManyWithoutUserInput No
UserAlert UserAlertCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageCreateNestedManyWithoutSenderInput No

UserUncheckedCreateWithoutTraderContactMessagesReceivedInput

Name Type Nullable
id String No
email String No
password String No
firstName String | Null Yes
lastName String | Null Yes
username String | Null Yes
createdAt DateTime No
updatedAt DateTime No
role UserRole No
SecurityAuditLog SecurityAuditLogUncheckedCreateNestedManyWithoutUserInput No
UserAlert UserAlertUncheckedCreateNestedManyWithoutUserInput No
alertPreferences UserAlertPreferencesUncheckedCreateNestedOneWithoutUserInput No
UserPerfume UserPerfumeUncheckedCreateNestedManyWithoutUserInput No
userPerfumeComments UserPerfumeCommentUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeRating UserPerfumeRatingUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeReview UserPerfumeReviewUncheckedCreateNestedManyWithoutUserInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedCreateNestedManyWithoutUserInput No
wishlistNotifications WishlistNotificationUncheckedCreateNestedManyWithoutUserInput No
traderFeedbackReceived TraderFeedbackUncheckedCreateNestedManyWithoutTraderInput No
traderFeedbackLeft TraderFeedbackUncheckedCreateNestedManyWithoutReviewerInput No
pendingSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutSubmittedByUserInput No
reviewedSubmissions PendingSubmissionUncheckedCreateNestedManyWithoutReviewedByUserInput No
traderContactMessagesSent TraderContactMessageUncheckedCreateNestedManyWithoutSenderInput No

UserCreateOrConnectWithoutTraderContactMessagesReceivedInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTraderContactMessagesReceivedInput | UserUncheckedCreateWithoutTraderContactMessagesReceivedInput No


UserUpdateToOneWithWhereWithoutTraderContactMessagesSentInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutTraderContactMessagesSentInput | UserUncheckedUpdateWithoutTraderContactMessagesSentInput No

UserUpdateWithoutTraderContactMessagesSentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesReceived TraderContactMessageUpdateManyWithoutRecipientNestedInput No

UserUncheckedUpdateWithoutTraderContactMessagesSentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesReceived TraderContactMessageUncheckedUpdateManyWithoutRecipientNestedInput No


UserUpdateToOneWithWhereWithoutTraderContactMessagesReceivedInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutTraderContactMessagesReceivedInput | UserUncheckedUpdateWithoutTraderContactMessagesReceivedInput No

UserUpdateWithoutTraderContactMessagesReceivedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUpdateManyWithoutSenderNestedInput No

UserUncheckedUpdateWithoutTraderContactMessagesReceivedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
firstName String | NullableStringFieldUpdateOperationsInput | Null Yes
lastName String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
SecurityAuditLog SecurityAuditLogUncheckedUpdateManyWithoutUserNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutUserNestedInput No
alertPreferences UserAlertPreferencesUncheckedUpdateOneWithoutUserNestedInput No
UserPerfume UserPerfumeUncheckedUpdateManyWithoutUserNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutUserNestedInput No
UserPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutUserNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutUserNestedInput No
traderFeedbackReceived TraderFeedbackUncheckedUpdateManyWithoutTraderNestedInput No
traderFeedbackLeft TraderFeedbackUncheckedUpdateManyWithoutReviewerNestedInput No
pendingSubmissions PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserNestedInput No
reviewedSubmissions PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserNestedInput No
traderContactMessagesSent TraderContactMessageUncheckedUpdateManyWithoutSenderNestedInput No

SecurityAuditLogCreateManyUserInput

Name Type Nullable
id String No
action SecurityAuditAction No
severity SecurityAuditSeverity No
resource String | Null Yes
resourceId String | Null Yes
ipAddress String | Null Yes
userAgent String | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No

UserAlertCreateManyUserInput

Name Type Nullable
id String No
perfumeId String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
readAt DateTime | Null Yes
dismissedAt DateTime | Null Yes

UserPerfumeCreateManyUserInput

Name Type Nullable
id String No
perfumeId String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No

UserPerfumeCommentCreateManyUserInput

Name Type Nullable
id String No
perfumeId String No
userPerfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No

UserPerfumeRatingCreateManyUserInput

Name Type Nullable
id String No
perfumeId String No
createdAt DateTime No
gender Int | Null Yes
longevity Int | Null Yes
overall Int | Null Yes
priceValue Int | Null Yes
sillage Int | Null Yes
updatedAt DateTime No

UserPerfumeReviewCreateManyUserInput

Name Type Nullable
id String No
perfumeId String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No

UserPerfumeWishlistCreateManyUserInput

Name Type Nullable
id String No
perfumeId String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No

WishlistNotificationCreateManyUserInput

Name Type Nullable
id String No
perfumeId String No
notifiedAt DateTime No
updatedAt DateTime No

TraderFeedbackCreateManyTraderInput

Name Type Nullable
id String No
reviewerId String No
rating Int No
comment String | Null Yes
createdAt DateTime No
updatedAt DateTime No

TraderFeedbackCreateManyReviewerInput

Name Type Nullable
id String No
traderId String No
rating Int No
comment String | Null Yes
createdAt DateTime No
updatedAt DateTime No

PendingSubmissionCreateManySubmittedByUserInput

Name Type Nullable
id String No
submissionType PendingSubmissionType No
status PendingSubmissionStatus No
submissionData JsonNullValueInput | Json No
adminNotes String | Null Yes
reviewedBy String | Null Yes
reviewedAt DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No

PendingSubmissionCreateManyReviewedByUserInput

Name Type Nullable
id String No
submissionType PendingSubmissionType No
submittedBy String | Null Yes
status PendingSubmissionStatus No
submissionData JsonNullValueInput | Json No
adminNotes String | Null Yes
reviewedAt DateTime | Null Yes
createdAt DateTime No
updatedAt DateTime No

TraderContactMessageCreateManySenderInput

Name Type Nullable
id String No
recipientId String No
subject String | Null Yes
message String No
read Boolean No
createdAt DateTime No

TraderContactMessageCreateManyRecipientInput

Name Type Nullable
id String No
senderId String No
subject String | Null Yes
message String No
read Boolean No
createdAt DateTime No

SecurityAuditLogUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
action SecurityAuditAction | EnumSecurityAuditActionFieldUpdateOperationsInput No
severity SecurityAuditSeverity | EnumSecurityAuditSeverityFieldUpdateOperationsInput No
resource String | NullableStringFieldUpdateOperationsInput | Null Yes
resourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
ipAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
userAgent String | NullableStringFieldUpdateOperationsInput | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

SecurityAuditLogUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
action SecurityAuditAction | EnumSecurityAuditActionFieldUpdateOperationsInput No
severity SecurityAuditSeverity | EnumSecurityAuditSeverityFieldUpdateOperationsInput No
resource String | NullableStringFieldUpdateOperationsInput | Null Yes
resourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
ipAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
userAgent String | NullableStringFieldUpdateOperationsInput | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

SecurityAuditLogUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
action SecurityAuditAction | EnumSecurityAuditActionFieldUpdateOperationsInput No
severity SecurityAuditSeverity | EnumSecurityAuditSeverityFieldUpdateOperationsInput No
resource String | NullableStringFieldUpdateOperationsInput | Null Yes
resourceId String | NullableStringFieldUpdateOperationsInput | Null Yes
ipAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
userAgent String | NullableStringFieldUpdateOperationsInput | Null Yes
details NullableJsonNullValueInput | Json No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

UserAlertUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
alertType AlertType | EnumAlertTypeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
isRead Boolean | BoolFieldUpdateOperationsInput No
isDismissed Boolean | BoolFieldUpdateOperationsInput No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
readAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dismissedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Perfume PerfumeUpdateOneRequiredWithoutUserAlertNestedInput No

UserAlertUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
alertType AlertType | EnumAlertTypeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
isRead Boolean | BoolFieldUpdateOperationsInput No
isDismissed Boolean | BoolFieldUpdateOperationsInput No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
readAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dismissedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

UserAlertUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
alertType AlertType | EnumAlertTypeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
isRead Boolean | BoolFieldUpdateOperationsInput No
isDismissed Boolean | BoolFieldUpdateOperationsInput No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
readAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dismissedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

UserPerfumeUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutUserPerfumeNestedInput No
comments UserPerfumeCommentUpdateManyWithoutUserPerfumeNestedInput No

UserPerfumeUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No
comments UserPerfumeCommentUncheckedUpdateManyWithoutUserPerfumeNestedInput No

UserPerfumeUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No

UserPerfumeCommentUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutUserPerfumeCommentsNestedInput No
userPerfume UserPerfumeUpdateOneRequiredWithoutCommentsNestedInput No

UserPerfumeCommentUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
userPerfumeId String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeCommentUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
userPerfumeId String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeRatingUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutUserPerfumeRatingNestedInput No

UserPerfumeRatingUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeRatingUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeReviewUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
review String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isApproved Boolean | BoolFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutUserPerfumeReviewNestedInput No

UserPerfumeReviewUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
review String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isApproved Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeReviewUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
review String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isApproved Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeWishlistUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutUserPerfumeWishlistNestedInput No

UserPerfumeWishlistUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeWishlistUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No

WishlistNotificationUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
notifiedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutWishlistNotificationsNestedInput No

WishlistNotificationUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
notifiedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

WishlistNotificationUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
notifiedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderFeedbackUpdateWithoutTraderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewer UserUpdateOneRequiredWithoutTraderFeedbackLeftNestedInput No

TraderFeedbackUncheckedUpdateWithoutTraderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
reviewerId String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderFeedbackUncheckedUpdateManyWithoutTraderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
reviewerId String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderFeedbackUpdateWithoutReviewerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
trader UserUpdateOneRequiredWithoutTraderFeedbackReceivedNestedInput No

TraderFeedbackUncheckedUpdateWithoutReviewerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
traderId String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderFeedbackUncheckedUpdateManyWithoutReviewerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
traderId String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PendingSubmissionUpdateWithoutSubmittedByUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
submissionType PendingSubmissionType | EnumPendingSubmissionTypeFieldUpdateOperationsInput No
status PendingSubmissionStatus | EnumPendingSubmissionStatusFieldUpdateOperationsInput No
submissionData JsonNullValueInput | Json No
adminNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedByUser UserUpdateOneWithoutReviewedSubmissionsNestedInput No

PendingSubmissionUncheckedUpdateWithoutSubmittedByUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
submissionType PendingSubmissionType | EnumPendingSubmissionTypeFieldUpdateOperationsInput No
status PendingSubmissionStatus | EnumPendingSubmissionStatusFieldUpdateOperationsInput No
submissionData JsonNullValueInput | Json No
adminNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PendingSubmissionUncheckedUpdateManyWithoutSubmittedByUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
submissionType PendingSubmissionType | EnumPendingSubmissionTypeFieldUpdateOperationsInput No
status PendingSubmissionStatus | EnumPendingSubmissionStatusFieldUpdateOperationsInput No
submissionData JsonNullValueInput | Json No
adminNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PendingSubmissionUpdateWithoutReviewedByUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
submissionType PendingSubmissionType | EnumPendingSubmissionTypeFieldUpdateOperationsInput No
status PendingSubmissionStatus | EnumPendingSubmissionStatusFieldUpdateOperationsInput No
submissionData JsonNullValueInput | Json No
adminNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
submittedByUser UserUpdateOneWithoutPendingSubmissionsNestedInput No

PendingSubmissionUncheckedUpdateWithoutReviewedByUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
submissionType PendingSubmissionType | EnumPendingSubmissionTypeFieldUpdateOperationsInput No
submittedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
status PendingSubmissionStatus | EnumPendingSubmissionStatusFieldUpdateOperationsInput No
submissionData JsonNullValueInput | Json No
adminNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PendingSubmissionUncheckedUpdateManyWithoutReviewedByUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
submissionType PendingSubmissionType | EnumPendingSubmissionTypeFieldUpdateOperationsInput No
submittedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
status PendingSubmissionStatus | EnumPendingSubmissionStatusFieldUpdateOperationsInput No
submissionData JsonNullValueInput | Json No
adminNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderContactMessageUpdateWithoutSenderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
message String | StringFieldUpdateOperationsInput No
read Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
recipient UserUpdateOneRequiredWithoutTraderContactMessagesReceivedNestedInput No

TraderContactMessageUncheckedUpdateWithoutSenderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
recipientId String | StringFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
message String | StringFieldUpdateOperationsInput No
read Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderContactMessageUncheckedUpdateManyWithoutSenderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
recipientId String | StringFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
message String | StringFieldUpdateOperationsInput No
read Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderContactMessageUpdateWithoutRecipientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
message String | StringFieldUpdateOperationsInput No
read Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
sender UserUpdateOneRequiredWithoutTraderContactMessagesSentNestedInput No

TraderContactMessageUncheckedUpdateWithoutRecipientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
senderId String | StringFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
message String | StringFieldUpdateOperationsInput No
read Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

TraderContactMessageUncheckedUpdateManyWithoutRecipientInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
senderId String | StringFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
message String | StringFieldUpdateOperationsInput No
read Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PerfumeCreateManyPerfumeHouseInput

Name Type Nullable
id String No
name String No
description String | Null Yes
image String | Null Yes
createdAt DateTime No
updatedAt DateTime No
slug String No

PerfumeUpdateWithoutPerfumeHouseInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateWithoutPerfumeHouseInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
perfumeNoteRelations PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeNestedInput No
UserAlert UserAlertUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfume UserPerfumeUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeComments UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeRating UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeReview UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeNestedInput No
userPerfumeWishlist UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeNestedInput No
wishlistNotifications WishlistNotificationUncheckedUpdateManyWithoutPerfumeNestedInput No

PerfumeUncheckedUpdateManyWithoutPerfumeHouseInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No

PerfumeNoteRelationCreateManyPerfumeInput

Name Type Nullable
id String No
noteId String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No

UserAlertCreateManyPerfumeInput

Name Type Nullable
id String No
userId String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime No
readAt DateTime | Null Yes
dismissedAt DateTime | Null Yes

UserPerfumeCreateManyPerfumeInput

Name Type Nullable
id String No
userId String No
amount String No
available String No
price String | Null Yes
placeOfPurchase String | Null Yes
tradePrice String | Null Yes
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No

UserPerfumeCommentCreateManyPerfumeInput

Name Type Nullable
id String No
userId String No
userPerfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No

UserPerfumeRatingCreateManyPerfumeInput

Name Type Nullable
id String No
userId String No
createdAt DateTime No
gender Int | Null Yes
longevity Int | Null Yes
overall Int | Null Yes
priceValue Int | Null Yes
sillage Int | Null Yes
updatedAt DateTime No

UserPerfumeReviewCreateManyPerfumeInput

Name Type Nullable
id String No
userId String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No

UserPerfumeWishlistCreateManyPerfumeInput

Name Type Nullable
id String No
userId String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No

WishlistNotificationCreateManyPerfumeInput

Name Type Nullable
id String No
userId String No
notifiedAt DateTime No
updatedAt DateTime No

PerfumeNoteRelationUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
noteType PerfumeNoteType | EnumPerfumeNoteTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
note PerfumeNotesUpdateOneRequiredWithoutPerfumeNoteRelationsNestedInput No

PerfumeNoteRelationUncheckedUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
noteId String | StringFieldUpdateOperationsInput No
noteType PerfumeNoteType | EnumPerfumeNoteTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PerfumeNoteRelationUncheckedUpdateManyWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
noteId String | StringFieldUpdateOperationsInput No
noteType PerfumeNoteType | EnumPerfumeNoteTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserAlertUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
alertType AlertType | EnumAlertTypeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
isRead Boolean | BoolFieldUpdateOperationsInput No
isDismissed Boolean | BoolFieldUpdateOperationsInput No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
readAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dismissedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
User UserUpdateOneRequiredWithoutUserAlertNestedInput No

UserAlertUncheckedUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
alertType AlertType | EnumAlertTypeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
isRead Boolean | BoolFieldUpdateOperationsInput No
isDismissed Boolean | BoolFieldUpdateOperationsInput No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
readAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dismissedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

UserAlertUncheckedUpdateManyWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
alertType AlertType | EnumAlertTypeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
isRead Boolean | BoolFieldUpdateOperationsInput No
isDismissed Boolean | BoolFieldUpdateOperationsInput No
metadata NullableJsonNullValueInput | Json No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
readAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dismissedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

UserPerfumeUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutUserPerfumeNestedInput No
comments UserPerfumeCommentUpdateManyWithoutUserPerfumeNestedInput No

UserPerfumeUncheckedUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No
comments UserPerfumeCommentUncheckedUpdateManyWithoutUserPerfumeNestedInput No

UserPerfumeUncheckedUpdateManyWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
amount String | StringFieldUpdateOperationsInput No
available String | StringFieldUpdateOperationsInput No
price String | NullableStringFieldUpdateOperationsInput | Null Yes
placeOfPurchase String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePrice String | NullableStringFieldUpdateOperationsInput | Null Yes
tradePreference TradePreference | EnumTradePreferenceFieldUpdateOperationsInput No
tradeOnly Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
type PerfumeType | EnumPerfumeTypeFieldUpdateOperationsInput No

UserPerfumeCommentUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutUserPerfumeCommentsNestedInput No
userPerfume UserPerfumeUpdateOneRequiredWithoutCommentsNestedInput No

UserPerfumeCommentUncheckedUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
userPerfumeId String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeCommentUncheckedUpdateManyWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
userPerfumeId String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeRatingUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutUserPerfumeRatingNestedInput No

UserPerfumeRatingUncheckedUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeRatingUncheckedUpdateManyWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
gender Int | NullableIntFieldUpdateOperationsInput | Null Yes
longevity Int | NullableIntFieldUpdateOperationsInput | Null Yes
overall Int | NullableIntFieldUpdateOperationsInput | Null Yes
priceValue Int | NullableIntFieldUpdateOperationsInput | Null Yes
sillage Int | NullableIntFieldUpdateOperationsInput | Null Yes
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeReviewUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
review String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isApproved Boolean | BoolFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutUserPerfumeReviewNestedInput No

UserPerfumeReviewUncheckedUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
review String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isApproved Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeReviewUncheckedUpdateManyWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
review String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isApproved Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeWishlistUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutUserPerfumeWishlistNestedInput No

UserPerfumeWishlistUncheckedUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No

UserPerfumeWishlistUncheckedUpdateManyWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No

WishlistNotificationUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
notifiedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutWishlistNotificationsNestedInput No

WishlistNotificationUncheckedUpdateWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
notifiedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

WishlistNotificationUncheckedUpdateManyWithoutPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
notifiedAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeCommentCreateManyUserPerfumeInput

Name Type Nullable
id String No
userId String No
perfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No

UserPerfumeCommentUpdateWithoutUserPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutUserPerfumeCommentsNestedInput No
user UserUpdateOneRequiredWithoutUserPerfumeCommentsNestedInput No

UserPerfumeCommentUncheckedUpdateWithoutUserPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

UserPerfumeCommentUncheckedUpdateManyWithoutUserPerfumeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
comment String | StringFieldUpdateOperationsInput No
isPublic Boolean | BoolFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PerfumeNoteRelationCreateManyNoteInput

Name Type Nullable
id String No
perfumeId String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No

PerfumeNoteRelationUpdateWithoutNoteInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
noteType PerfumeNoteType | EnumPerfumeNoteTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
perfume PerfumeUpdateOneRequiredWithoutPerfumeNoteRelationsNestedInput No

PerfumeNoteRelationUncheckedUpdateWithoutNoteInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
noteType PerfumeNoteType | EnumPerfumeNoteTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

PerfumeNoteRelationUncheckedUpdateManyWithoutNoteInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
perfumeId String | StringFieldUpdateOperationsInput No
noteType PerfumeNoteType | EnumPerfumeNoteTypeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

Output Types

User

Name Type Nullable
id String Yes
email String Yes
password String Yes
firstName String No
lastName String No
username String No
createdAt DateTime Yes
updatedAt DateTime Yes
role UserRole Yes
SecurityAuditLog SecurityAuditLog[] No
UserAlert UserAlert[] No
alertPreferences UserAlertPreferences No
UserPerfume UserPerfume[] No
userPerfumeComments UserPerfumeComment[] No
UserPerfumeRating UserPerfumeRating[] No
UserPerfumeReview UserPerfumeReview[] No
UserPerfumeWishlist UserPerfumeWishlist[] No
wishlistNotifications WishlistNotification[] No
traderFeedbackReceived TraderFeedback[] No
traderFeedbackLeft TraderFeedback[] No
pendingSubmissions PendingSubmission[] No
reviewedSubmissions PendingSubmission[] No
traderContactMessagesSent TraderContactMessage[] No
traderContactMessagesReceived TraderContactMessage[] No
_count UserCountOutputType Yes

PerfumeHouse

Name Type Nullable
id String Yes
name String Yes
description String No
image String No
website String No
country String No
founded String No
email String No
phone String No
address String No
type HouseType Yes
createdAt DateTime Yes
updatedAt DateTime Yes
slug String Yes
perfumes Perfume[] No
_count PerfumeHouseCountOutputType Yes

Perfume

Name Type Nullable
id String Yes
name String Yes
description String No
image String No
perfumeHouseId String No
createdAt DateTime Yes
updatedAt DateTime Yes
slug String Yes
perfumeHouse PerfumeHouse No
perfumeNoteRelations PerfumeNoteRelation[] No
UserAlert UserAlert[] No
userPerfume UserPerfume[] No
userPerfumeComments UserPerfumeComment[] No
userPerfumeRating UserPerfumeRating[] No
userPerfumeReview UserPerfumeReview[] No
userPerfumeWishlist UserPerfumeWishlist[] No
wishlistNotifications WishlistNotification[] No
_count PerfumeCountOutputType Yes

UserPerfume

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
amount String Yes
available String Yes
price String No
placeOfPurchase String No
tradePrice String No
tradePreference TradePreference Yes
tradeOnly Boolean Yes
createdAt DateTime Yes
updatedAt DateTime Yes
type PerfumeType Yes
perfume Perfume Yes
user User Yes
comments UserPerfumeComment[] No
_count UserPerfumeCountOutputType Yes

UserPerfumeRating

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
createdAt DateTime Yes
gender Int No
longevity Int No
overall Int No
priceValue Int No
sillage Int No
updatedAt DateTime Yes
perfume Perfume Yes
user User Yes

UserPerfumeReview

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
review String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
isApproved Boolean Yes
perfume Perfume Yes
user User Yes

UserPerfumeWishlist

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
isPublic Boolean Yes
perfume Perfume Yes
user User Yes

UserPerfumeComment

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
userPerfumeId String Yes
comment String Yes
isPublic Boolean Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfume Perfume Yes
user User Yes
userPerfume UserPerfume Yes

PerfumeNotes

Name Type Nullable
id String Yes
name String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfumeOpenId String No
perfumeHeartId String No
perfumeCloseId String No
perfumeNoteRelations PerfumeNoteRelation[] No
_count PerfumeNotesCountOutputType Yes

PerfumeNoteRelation

Name Type Nullable
id String Yes
perfumeId String Yes
noteId String Yes
noteType PerfumeNoteType Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfume Perfume Yes
note PerfumeNotes Yes

WishlistNotification

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
notifiedAt DateTime Yes
updatedAt DateTime Yes
perfume Perfume Yes
user User Yes

TraderFeedback

Name Type Nullable
id String Yes
traderId String Yes
reviewerId String Yes
rating Int Yes
comment String No
createdAt DateTime Yes
updatedAt DateTime Yes
trader User Yes
reviewer User Yes

SecurityAuditLog

Name Type Nullable
id String Yes
userId String No
action SecurityAuditAction Yes
severity SecurityAuditSeverity Yes
resource String No
resourceId String No
ipAddress String No
userAgent String No
details Json No
metadata Json No
createdAt DateTime Yes
User User No

UserAlert

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
alertType AlertType Yes
title String Yes
message String Yes
isRead Boolean Yes
isDismissed Boolean Yes
metadata Json No
createdAt DateTime Yes
readAt DateTime No
dismissedAt DateTime No
Perfume Perfume Yes
User User Yes

UserAlertPreferences

Name Type Nullable
id String Yes
userId String Yes
wishlistAlertsEnabled Boolean Yes
decantAlertsEnabled Boolean Yes
emailWishlistAlerts Boolean Yes
emailDecantAlerts Boolean Yes
maxAlerts Int Yes
User User Yes

PendingSubmission

Name Type Nullable
id String Yes
submissionType PendingSubmissionType Yes
submittedBy String No
status PendingSubmissionStatus Yes
submissionData Json Yes
adminNotes String No
reviewedBy String No
reviewedAt DateTime No
createdAt DateTime Yes
updatedAt DateTime Yes
submittedByUser User No
reviewedByUser User No

TraderContactMessage

Name Type Nullable
id String Yes
senderId String Yes
recipientId String Yes
subject String No
message String Yes
read Boolean Yes
createdAt DateTime Yes
sender User Yes
recipient User Yes

MigrationState

Name Type Nullable
id String Yes
tableName String Yes
lastMigratedAt DateTime Yes
recordCount Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes

CreateManyUserAndReturnOutputType

Name Type Nullable
id String Yes
email String Yes
password String Yes
firstName String No
lastName String No
username String No
createdAt DateTime Yes
updatedAt DateTime Yes
role UserRole Yes

UpdateManyUserAndReturnOutputType

Name Type Nullable
id String Yes
email String Yes
password String Yes
firstName String No
lastName String No
username String No
createdAt DateTime Yes
updatedAt DateTime Yes
role UserRole Yes

CreateManyPerfumeHouseAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
image String No
website String No
country String No
founded String No
email String No
phone String No
address String No
type HouseType Yes
createdAt DateTime Yes
updatedAt DateTime Yes
slug String Yes

UpdateManyPerfumeHouseAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
image String No
website String No
country String No
founded String No
email String No
phone String No
address String No
type HouseType Yes
createdAt DateTime Yes
updatedAt DateTime Yes
slug String Yes

CreateManyPerfumeAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
image String No
perfumeHouseId String No
createdAt DateTime Yes
updatedAt DateTime Yes
slug String Yes
perfumeHouse PerfumeHouse No

UpdateManyPerfumeAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
image String No
perfumeHouseId String No
createdAt DateTime Yes
updatedAt DateTime Yes
slug String Yes
perfumeHouse PerfumeHouse No

CreateManyUserPerfumeAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
amount String Yes
available String Yes
price String No
placeOfPurchase String No
tradePrice String No
tradePreference TradePreference Yes
tradeOnly Boolean Yes
createdAt DateTime Yes
updatedAt DateTime Yes
type PerfumeType Yes
perfume Perfume Yes
user User Yes

UpdateManyUserPerfumeAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
amount String Yes
available String Yes
price String No
placeOfPurchase String No
tradePrice String No
tradePreference TradePreference Yes
tradeOnly Boolean Yes
createdAt DateTime Yes
updatedAt DateTime Yes
type PerfumeType Yes
perfume Perfume Yes
user User Yes

CreateManyUserPerfumeRatingAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
createdAt DateTime Yes
gender Int No
longevity Int No
overall Int No
priceValue Int No
sillage Int No
updatedAt DateTime Yes
perfume Perfume Yes
user User Yes

UpdateManyUserPerfumeRatingAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
createdAt DateTime Yes
gender Int No
longevity Int No
overall Int No
priceValue Int No
sillage Int No
updatedAt DateTime Yes
perfume Perfume Yes
user User Yes

CreateManyUserPerfumeReviewAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
review String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
isApproved Boolean Yes
perfume Perfume Yes
user User Yes

UpdateManyUserPerfumeReviewAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
review String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
isApproved Boolean Yes
perfume Perfume Yes
user User Yes

CreateManyUserPerfumeWishlistAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
isPublic Boolean Yes
perfume Perfume Yes
user User Yes

UpdateManyUserPerfumeWishlistAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
isPublic Boolean Yes
perfume Perfume Yes
user User Yes

CreateManyUserPerfumeCommentAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
userPerfumeId String Yes
comment String Yes
isPublic Boolean Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfume Perfume Yes
user User Yes
userPerfume UserPerfume Yes

UpdateManyUserPerfumeCommentAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
userPerfumeId String Yes
comment String Yes
isPublic Boolean Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfume Perfume Yes
user User Yes
userPerfume UserPerfume Yes

CreateManyPerfumeNotesAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfumeOpenId String No
perfumeHeartId String No
perfumeCloseId String No

UpdateManyPerfumeNotesAndReturnOutputType

Name Type Nullable
id String Yes
name String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfumeOpenId String No
perfumeHeartId String No
perfumeCloseId String No

CreateManyPerfumeNoteRelationAndReturnOutputType

Name Type Nullable
id String Yes
perfumeId String Yes
noteId String Yes
noteType PerfumeNoteType Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfume Perfume Yes
note PerfumeNotes Yes

UpdateManyPerfumeNoteRelationAndReturnOutputType

Name Type Nullable
id String Yes
perfumeId String Yes
noteId String Yes
noteType PerfumeNoteType Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfume Perfume Yes
note PerfumeNotes Yes

CreateManyWishlistNotificationAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
notifiedAt DateTime Yes
updatedAt DateTime Yes
perfume Perfume Yes
user User Yes

UpdateManyWishlistNotificationAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
notifiedAt DateTime Yes
updatedAt DateTime Yes
perfume Perfume Yes
user User Yes

CreateManyTraderFeedbackAndReturnOutputType

Name Type Nullable
id String Yes
traderId String Yes
reviewerId String Yes
rating Int Yes
comment String No
createdAt DateTime Yes
updatedAt DateTime Yes
trader User Yes
reviewer User Yes

UpdateManyTraderFeedbackAndReturnOutputType

Name Type Nullable
id String Yes
traderId String Yes
reviewerId String Yes
rating Int Yes
comment String No
createdAt DateTime Yes
updatedAt DateTime Yes
trader User Yes
reviewer User Yes

CreateManySecurityAuditLogAndReturnOutputType

Name Type Nullable
id String Yes
userId String No
action SecurityAuditAction Yes
severity SecurityAuditSeverity Yes
resource String No
resourceId String No
ipAddress String No
userAgent String No
details Json No
metadata Json No
createdAt DateTime Yes
User User No

UpdateManySecurityAuditLogAndReturnOutputType

Name Type Nullable
id String Yes
userId String No
action SecurityAuditAction Yes
severity SecurityAuditSeverity Yes
resource String No
resourceId String No
ipAddress String No
userAgent String No
details Json No
metadata Json No
createdAt DateTime Yes
User User No

CreateManyUserAlertAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
alertType AlertType Yes
title String Yes
message String Yes
isRead Boolean Yes
isDismissed Boolean Yes
metadata Json No
createdAt DateTime Yes
readAt DateTime No
dismissedAt DateTime No
Perfume Perfume Yes
User User Yes

UpdateManyUserAlertAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
alertType AlertType Yes
title String Yes
message String Yes
isRead Boolean Yes
isDismissed Boolean Yes
metadata Json No
createdAt DateTime Yes
readAt DateTime No
dismissedAt DateTime No
Perfume Perfume Yes
User User Yes

CreateManyUserAlertPreferencesAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
wishlistAlertsEnabled Boolean Yes
decantAlertsEnabled Boolean Yes
emailWishlistAlerts Boolean Yes
emailDecantAlerts Boolean Yes
maxAlerts Int Yes
User User Yes

UpdateManyUserAlertPreferencesAndReturnOutputType

Name Type Nullable
id String Yes
userId String Yes
wishlistAlertsEnabled Boolean Yes
decantAlertsEnabled Boolean Yes
emailWishlistAlerts Boolean Yes
emailDecantAlerts Boolean Yes
maxAlerts Int Yes
User User Yes

CreateManyPendingSubmissionAndReturnOutputType

Name Type Nullable
id String Yes
submissionType PendingSubmissionType Yes
submittedBy String No
status PendingSubmissionStatus Yes
submissionData Json Yes
adminNotes String No
reviewedBy String No
reviewedAt DateTime No
createdAt DateTime Yes
updatedAt DateTime Yes
submittedByUser User No
reviewedByUser User No

UpdateManyPendingSubmissionAndReturnOutputType

Name Type Nullable
id String Yes
submissionType PendingSubmissionType Yes
submittedBy String No
status PendingSubmissionStatus Yes
submissionData Json Yes
adminNotes String No
reviewedBy String No
reviewedAt DateTime No
createdAt DateTime Yes
updatedAt DateTime Yes
submittedByUser User No
reviewedByUser User No

CreateManyTraderContactMessageAndReturnOutputType

Name Type Nullable
id String Yes
senderId String Yes
recipientId String Yes
subject String No
message String Yes
read Boolean Yes
createdAt DateTime Yes
sender User Yes
recipient User Yes

UpdateManyTraderContactMessageAndReturnOutputType

Name Type Nullable
id String Yes
senderId String Yes
recipientId String Yes
subject String No
message String Yes
read Boolean Yes
createdAt DateTime Yes
sender User Yes
recipient User Yes

CreateManyMigrationStateAndReturnOutputType

Name Type Nullable
id String Yes
tableName String Yes
lastMigratedAt DateTime Yes
recordCount Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes

UpdateManyMigrationStateAndReturnOutputType

Name Type Nullable
id String Yes
tableName String Yes
lastMigratedAt DateTime Yes
recordCount Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes

AggregateUser

Name Type Nullable
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

UserGroupByOutputType

Name Type Nullable
id String Yes
email String Yes
password String Yes
firstName String No
lastName String No
username String No
createdAt DateTime Yes
updatedAt DateTime Yes
role UserRole Yes
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

AggregatePerfumeHouse

Name Type Nullable
_count PerfumeHouseCountAggregateOutputType No
_min PerfumeHouseMinAggregateOutputType No
_max PerfumeHouseMaxAggregateOutputType No

PerfumeHouseGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
image String No
website String No
country String No
founded String No
email String No
phone String No
address String No
type HouseType Yes
createdAt DateTime Yes
updatedAt DateTime Yes
slug String Yes
_count PerfumeHouseCountAggregateOutputType No
_min PerfumeHouseMinAggregateOutputType No
_max PerfumeHouseMaxAggregateOutputType No

AggregatePerfume

Name Type Nullable
_count PerfumeCountAggregateOutputType No
_min PerfumeMinAggregateOutputType No
_max PerfumeMaxAggregateOutputType No

PerfumeGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
image String No
perfumeHouseId String No
createdAt DateTime Yes
updatedAt DateTime Yes
slug String Yes
_count PerfumeCountAggregateOutputType No
_min PerfumeMinAggregateOutputType No
_max PerfumeMaxAggregateOutputType No

AggregateUserPerfume

Name Type Nullable
_count UserPerfumeCountAggregateOutputType No
_min UserPerfumeMinAggregateOutputType No
_max UserPerfumeMaxAggregateOutputType No

UserPerfumeGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
amount String Yes
available String Yes
price String No
placeOfPurchase String No
tradePrice String No
tradePreference TradePreference Yes
tradeOnly Boolean Yes
createdAt DateTime Yes
updatedAt DateTime Yes
type PerfumeType Yes
_count UserPerfumeCountAggregateOutputType No
_min UserPerfumeMinAggregateOutputType No
_max UserPerfumeMaxAggregateOutputType No


UserPerfumeRatingGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
createdAt DateTime Yes
gender Int No
longevity Int No
overall Int No
priceValue Int No
sillage Int No
updatedAt DateTime Yes
_count UserPerfumeRatingCountAggregateOutputType No
_avg UserPerfumeRatingAvgAggregateOutputType No
_sum UserPerfumeRatingSumAggregateOutputType No
_min UserPerfumeRatingMinAggregateOutputType No
_max UserPerfumeRatingMaxAggregateOutputType No


UserPerfumeReviewGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
review String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
isApproved Boolean Yes
_count UserPerfumeReviewCountAggregateOutputType No
_min UserPerfumeReviewMinAggregateOutputType No
_max UserPerfumeReviewMaxAggregateOutputType No


UserPerfumeWishlistGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
isPublic Boolean Yes
_count UserPerfumeWishlistCountAggregateOutputType No
_min UserPerfumeWishlistMinAggregateOutputType No
_max UserPerfumeWishlistMaxAggregateOutputType No


UserPerfumeCommentGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
userPerfumeId String Yes
comment String Yes
isPublic Boolean Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count UserPerfumeCommentCountAggregateOutputType No
_min UserPerfumeCommentMinAggregateOutputType No
_max UserPerfumeCommentMaxAggregateOutputType No

AggregatePerfumeNotes

Name Type Nullable
_count PerfumeNotesCountAggregateOutputType No
_min PerfumeNotesMinAggregateOutputType No
_max PerfumeNotesMaxAggregateOutputType No

PerfumeNotesGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
perfumeOpenId String No
perfumeHeartId String No
perfumeCloseId String No
_count PerfumeNotesCountAggregateOutputType No
_min PerfumeNotesMinAggregateOutputType No
_max PerfumeNotesMaxAggregateOutputType No


PerfumeNoteRelationGroupByOutputType

Name Type Nullable
id String Yes
perfumeId String Yes
noteId String Yes
noteType PerfumeNoteType Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count PerfumeNoteRelationCountAggregateOutputType No
_min PerfumeNoteRelationMinAggregateOutputType No
_max PerfumeNoteRelationMaxAggregateOutputType No


WishlistNotificationGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
notifiedAt DateTime Yes
updatedAt DateTime Yes
_count WishlistNotificationCountAggregateOutputType No
_min WishlistNotificationMinAggregateOutputType No
_max WishlistNotificationMaxAggregateOutputType No


TraderFeedbackGroupByOutputType

Name Type Nullable
id String Yes
traderId String Yes
reviewerId String Yes
rating Int Yes
comment String No
createdAt DateTime Yes
updatedAt DateTime Yes
_count TraderFeedbackCountAggregateOutputType No
_avg TraderFeedbackAvgAggregateOutputType No
_sum TraderFeedbackSumAggregateOutputType No
_min TraderFeedbackMinAggregateOutputType No
_max TraderFeedbackMaxAggregateOutputType No


SecurityAuditLogGroupByOutputType

Name Type Nullable
id String Yes
userId String No
action SecurityAuditAction Yes
severity SecurityAuditSeverity Yes
resource String No
resourceId String No
ipAddress String No
userAgent String No
details Json No
metadata Json No
createdAt DateTime Yes
_count SecurityAuditLogCountAggregateOutputType No
_min SecurityAuditLogMinAggregateOutputType No
_max SecurityAuditLogMaxAggregateOutputType No

AggregateUserAlert

Name Type Nullable
_count UserAlertCountAggregateOutputType No
_min UserAlertMinAggregateOutputType No
_max UserAlertMaxAggregateOutputType No

UserAlertGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
perfumeId String Yes
alertType AlertType Yes
title String Yes
message String Yes
isRead Boolean Yes
isDismissed Boolean Yes
metadata Json No
createdAt DateTime Yes
readAt DateTime No
dismissedAt DateTime No
_count UserAlertCountAggregateOutputType No
_min UserAlertMinAggregateOutputType No
_max UserAlertMaxAggregateOutputType No


UserAlertPreferencesGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
wishlistAlertsEnabled Boolean Yes
decantAlertsEnabled Boolean Yes
emailWishlistAlerts Boolean Yes
emailDecantAlerts Boolean Yes
maxAlerts Int Yes
_count UserAlertPreferencesCountAggregateOutputType No
_avg UserAlertPreferencesAvgAggregateOutputType No
_sum UserAlertPreferencesSumAggregateOutputType No
_min UserAlertPreferencesMinAggregateOutputType No
_max UserAlertPreferencesMaxAggregateOutputType No


PendingSubmissionGroupByOutputType

Name Type Nullable
id String Yes
submissionType PendingSubmissionType Yes
submittedBy String No
status PendingSubmissionStatus Yes
submissionData Json Yes
adminNotes String No
reviewedBy String No
reviewedAt DateTime No
createdAt DateTime Yes
updatedAt DateTime Yes
_count PendingSubmissionCountAggregateOutputType No
_min PendingSubmissionMinAggregateOutputType No
_max PendingSubmissionMaxAggregateOutputType No


TraderContactMessageGroupByOutputType

Name Type Nullable
id String Yes
senderId String Yes
recipientId String Yes
subject String No
message String Yes
read Boolean Yes
createdAt DateTime Yes
_count TraderContactMessageCountAggregateOutputType No
_min TraderContactMessageMinAggregateOutputType No
_max TraderContactMessageMaxAggregateOutputType No


MigrationStateGroupByOutputType

Name Type Nullable
id String Yes
tableName String Yes
lastMigratedAt DateTime Yes
recordCount Int Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count MigrationStateCountAggregateOutputType No
_avg MigrationStateAvgAggregateOutputType No
_sum MigrationStateSumAggregateOutputType No
_min MigrationStateMinAggregateOutputType No
_max MigrationStateMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

UserCountOutputType

Name Type Nullable
SecurityAuditLog Int Yes
UserAlert Int Yes
UserPerfume Int Yes
userPerfumeComments Int Yes
UserPerfumeRating Int Yes
UserPerfumeReview Int Yes
UserPerfumeWishlist Int Yes
wishlistNotifications Int Yes
traderFeedbackReceived Int Yes
traderFeedbackLeft Int Yes
pendingSubmissions Int Yes
reviewedSubmissions Int Yes
traderContactMessagesSent Int Yes
traderContactMessagesReceived Int Yes

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
email Int Yes
password Int Yes
firstName Int Yes
lastName Int Yes
username Int Yes
createdAt Int Yes
updatedAt Int Yes
role Int Yes
_all Int Yes

UserMinAggregateOutputType

Name Type Nullable
id String No
email String No
password String No
firstName String No
lastName String No
username String No
createdAt DateTime No
updatedAt DateTime No
role UserRole No

UserMaxAggregateOutputType

Name Type Nullable
id String No
email String No
password String No
firstName String No
lastName String No
username String No
createdAt DateTime No
updatedAt DateTime No
role UserRole No

PerfumeHouseCountOutputType

Name Type Nullable
perfumes Int Yes

PerfumeHouseCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
image Int Yes
website Int Yes
country Int Yes
founded Int Yes
email Int Yes
phone Int Yes
address Int Yes
type Int Yes
createdAt Int Yes
updatedAt Int Yes
slug Int Yes
_all Int Yes

PerfumeHouseMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
image String No
website String No
country String No
founded String No
email String No
phone String No
address String No
type HouseType No
createdAt DateTime No
updatedAt DateTime No
slug String No

PerfumeHouseMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
image String No
website String No
country String No
founded String No
email String No
phone String No
address String No
type HouseType No
createdAt DateTime No
updatedAt DateTime No
slug String No

PerfumeCountOutputType

Name Type Nullable
perfumeNoteRelations Int Yes
UserAlert Int Yes
userPerfume Int Yes
userPerfumeComments Int Yes
userPerfumeRating Int Yes
userPerfumeReview Int Yes
userPerfumeWishlist Int Yes
wishlistNotifications Int Yes

PerfumeCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
image Int Yes
perfumeHouseId Int Yes
createdAt Int Yes
updatedAt Int Yes
slug Int Yes
_all Int Yes

PerfumeMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
image String No
perfumeHouseId String No
createdAt DateTime No
updatedAt DateTime No
slug String No

PerfumeMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
image String No
perfumeHouseId String No
createdAt DateTime No
updatedAt DateTime No
slug String No

UserPerfumeCountOutputType

Name Type Nullable
comments Int Yes

UserPerfumeCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
perfumeId Int Yes
amount Int Yes
available Int Yes
price Int Yes
placeOfPurchase Int Yes
tradePrice Int Yes
tradePreference Int Yes
tradeOnly Int Yes
createdAt Int Yes
updatedAt Int Yes
type Int Yes
_all Int Yes

UserPerfumeMinAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
amount String No
available String No
price String No
placeOfPurchase String No
tradePrice String No
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No

UserPerfumeMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
amount String No
available String No
price String No
placeOfPurchase String No
tradePrice String No
tradePreference TradePreference No
tradeOnly Boolean No
createdAt DateTime No
updatedAt DateTime No
type PerfumeType No

UserPerfumeRatingCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
perfumeId Int Yes
createdAt Int Yes
gender Int Yes
longevity Int Yes
overall Int Yes
priceValue Int Yes
sillage Int Yes
updatedAt Int Yes
_all Int Yes

UserPerfumeRatingAvgAggregateOutputType

Name Type Nullable
gender Float No
longevity Float No
overall Float No
priceValue Float No
sillage Float No

UserPerfumeRatingSumAggregateOutputType

Name Type Nullable
gender Int No
longevity Int No
overall Int No
priceValue Int No
sillage Int No

UserPerfumeRatingMinAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
createdAt DateTime No
gender Int No
longevity Int No
overall Int No
priceValue Int No
sillage Int No
updatedAt DateTime No

UserPerfumeRatingMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
createdAt DateTime No
gender Int No
longevity Int No
overall Int No
priceValue Int No
sillage Int No
updatedAt DateTime No

UserPerfumeReviewCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
perfumeId Int Yes
review Int Yes
createdAt Int Yes
updatedAt Int Yes
isApproved Int Yes
_all Int Yes

UserPerfumeReviewMinAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No

UserPerfumeReviewMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
review String No
createdAt DateTime No
updatedAt DateTime No
isApproved Boolean No

UserPerfumeWishlistCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
perfumeId Int Yes
createdAt Int Yes
updatedAt Int Yes
isPublic Int Yes
_all Int Yes

UserPerfumeWishlistMinAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No

UserPerfumeWishlistMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
createdAt DateTime No
updatedAt DateTime No
isPublic Boolean No

UserPerfumeCommentCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
perfumeId Int Yes
userPerfumeId Int Yes
comment Int Yes
isPublic Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

UserPerfumeCommentMinAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
userPerfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No

UserPerfumeCommentMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
userPerfumeId String No
comment String No
isPublic Boolean No
createdAt DateTime No
updatedAt DateTime No

PerfumeNotesCountOutputType

Name Type Nullable
perfumeNoteRelations Int Yes

PerfumeNotesCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
createdAt Int Yes
updatedAt Int Yes
perfumeOpenId Int Yes
perfumeHeartId Int Yes
perfumeCloseId Int Yes
_all Int Yes

PerfumeNotesMinAggregateOutputType

Name Type Nullable
id String No
name String No
createdAt DateTime No
updatedAt DateTime No
perfumeOpenId String No
perfumeHeartId String No
perfumeCloseId String No

PerfumeNotesMaxAggregateOutputType

Name Type Nullable
id String No
name String No
createdAt DateTime No
updatedAt DateTime No
perfumeOpenId String No
perfumeHeartId String No
perfumeCloseId String No

PerfumeNoteRelationCountAggregateOutputType

Name Type Nullable
id Int Yes
perfumeId Int Yes
noteId Int Yes
noteType Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

PerfumeNoteRelationMinAggregateOutputType

Name Type Nullable
id String No
perfumeId String No
noteId String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No

PerfumeNoteRelationMaxAggregateOutputType

Name Type Nullable
id String No
perfumeId String No
noteId String No
noteType PerfumeNoteType No
createdAt DateTime No
updatedAt DateTime No

WishlistNotificationCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
perfumeId Int Yes
notifiedAt Int Yes
updatedAt Int Yes
_all Int Yes

WishlistNotificationMinAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
notifiedAt DateTime No
updatedAt DateTime No

WishlistNotificationMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
notifiedAt DateTime No
updatedAt DateTime No

TraderFeedbackCountAggregateOutputType

Name Type Nullable
id Int Yes
traderId Int Yes
reviewerId Int Yes
rating Int Yes
comment Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

TraderFeedbackAvgAggregateOutputType

Name Type Nullable
rating Float No

TraderFeedbackSumAggregateOutputType

Name Type Nullable
rating Int No

TraderFeedbackMinAggregateOutputType

Name Type Nullable
id String No
traderId String No
reviewerId String No
rating Int No
comment String No
createdAt DateTime No
updatedAt DateTime No

TraderFeedbackMaxAggregateOutputType

Name Type Nullable
id String No
traderId String No
reviewerId String No
rating Int No
comment String No
createdAt DateTime No
updatedAt DateTime No

SecurityAuditLogCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
action Int Yes
severity Int Yes
resource Int Yes
resourceId Int Yes
ipAddress Int Yes
userAgent Int Yes
details Int Yes
metadata Int Yes
createdAt Int Yes
_all Int Yes

SecurityAuditLogMinAggregateOutputType

Name Type Nullable
id String No
userId String No
action SecurityAuditAction No
severity SecurityAuditSeverity No
resource String No
resourceId String No
ipAddress String No
userAgent String No
createdAt DateTime No

SecurityAuditLogMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
action SecurityAuditAction No
severity SecurityAuditSeverity No
resource String No
resourceId String No
ipAddress String No
userAgent String No
createdAt DateTime No

UserAlertCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
perfumeId Int Yes
alertType Int Yes
title Int Yes
message Int Yes
isRead Int Yes
isDismissed Int Yes
metadata Int Yes
createdAt Int Yes
readAt Int Yes
dismissedAt Int Yes
_all Int Yes

UserAlertMinAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
createdAt DateTime No
readAt DateTime No
dismissedAt DateTime No

UserAlertMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
perfumeId String No
alertType AlertType No
title String No
message String No
isRead Boolean No
isDismissed Boolean No
createdAt DateTime No
readAt DateTime No
dismissedAt DateTime No

UserAlertPreferencesCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
wishlistAlertsEnabled Int Yes
decantAlertsEnabled Int Yes
emailWishlistAlerts Int Yes
emailDecantAlerts Int Yes
maxAlerts Int Yes
_all Int Yes

UserAlertPreferencesAvgAggregateOutputType

Name Type Nullable
maxAlerts Float No

UserAlertPreferencesSumAggregateOutputType

Name Type Nullable
maxAlerts Int No

UserAlertPreferencesMinAggregateOutputType

Name Type Nullable
id String No
userId String No
wishlistAlertsEnabled Boolean No
decantAlertsEnabled Boolean No
emailWishlistAlerts Boolean No
emailDecantAlerts Boolean No
maxAlerts Int No

UserAlertPreferencesMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
wishlistAlertsEnabled Boolean No
decantAlertsEnabled Boolean No
emailWishlistAlerts Boolean No
emailDecantAlerts Boolean No
maxAlerts Int No

PendingSubmissionCountAggregateOutputType

Name Type Nullable
id Int Yes
submissionType Int Yes
submittedBy Int Yes
status Int Yes
submissionData Int Yes
adminNotes Int Yes
reviewedBy Int Yes
reviewedAt Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

PendingSubmissionMinAggregateOutputType

Name Type Nullable
id String No
submissionType PendingSubmissionType No
submittedBy String No
status PendingSubmissionStatus No
adminNotes String No
reviewedBy String No
reviewedAt DateTime No
createdAt DateTime No
updatedAt DateTime No

PendingSubmissionMaxAggregateOutputType

Name Type Nullable
id String No
submissionType PendingSubmissionType No
submittedBy String No
status PendingSubmissionStatus No
adminNotes String No
reviewedBy String No
reviewedAt DateTime No
createdAt DateTime No
updatedAt DateTime No

TraderContactMessageCountAggregateOutputType

Name Type Nullable
id Int Yes
senderId Int Yes
recipientId Int Yes
subject Int Yes
message Int Yes
read Int Yes
createdAt Int Yes
_all Int Yes

TraderContactMessageMinAggregateOutputType

Name Type Nullable
id String No
senderId String No
recipientId String No
subject String No
message String No
read Boolean No
createdAt DateTime No

TraderContactMessageMaxAggregateOutputType

Name Type Nullable
id String No
senderId String No
recipientId String No
subject String No
message String No
read Boolean No
createdAt DateTime No

MigrationStateCountAggregateOutputType

Name Type Nullable
id Int Yes
tableName Int Yes
lastMigratedAt Int Yes
recordCount Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

MigrationStateAvgAggregateOutputType

Name Type Nullable
recordCount Float No

MigrationStateSumAggregateOutputType

Name Type Nullable
recordCount Int No

MigrationStateMinAggregateOutputType

Name Type Nullable
id String No
tableName String No
lastMigratedAt DateTime No
recordCount Int No
createdAt DateTime No
updatedAt DateTime No

MigrationStateMaxAggregateOutputType

Name Type Nullable
id String No
tableName String No
lastMigratedAt DateTime No
recordCount Int No
createdAt DateTime No
updatedAt DateTime No